1
我的項目結構爲:拒絕所有exept一個文件夾,一個文件與htaccess的
-application
-lib
-public
-index.php
-.htaccess
的.htaccess現在是:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
我需要限制訪問所有文件夾exept public
和index.php
文件。怎麼做?
我嘗試添加Deny all
我.htaccess
和Allow all
到public
文件夾,但我index.php
成爲inaccessable。
參見例如:http://stackoverflow.com/questions/13251500/deny-access-to-all-php-files-except-root-index-php – Stefan
你有沒有自己寫這個? –
它是從兩個網站改編,甚至有一些網站可以很容易地生成這個 – Xavjer