因為
DokuWiki stores configuration and page data in files.
These files should never be accessible directly from the web.
簡單說就是data資料夾不能直接在網頁上存取 (應該吧!?)
然後參考這個頁面的設定方法
http://www.dokuwiki.org/security#web_access_security
我作法是:
編輯 /etc/httpd/conf/httpd.conf
最後加上這些東西
<LocationMatch "dokuwiki/(data|conf|bin|inc)/">
Order allow,deny
Deny from all
Satisfy All
</LocationMatch>
重新啟動apache就好了
--
原來的設定檔是寫LocationMatch "/(data|conf|bin|inc)/"
可是怕會影響到其他東西 又懶得一個一個測試
改成LocationMatch "dokuwiki/(data|conf|bin|inc)/"之後
結果一樣 XD
沒有留言:
張貼留言