我需要讓Apache只能瀏覽*.php檔案的檔案,其它的檔案都禁止瀏覽,請問這樣要怎麼設定?
我設定
<FilesMatch "\.*">
Order Allow,Deny
Deny from all
</FilesMatch>
<FilesMatch "\.php">
Order Allow,Deny
Allow from all
</FilesMatch>
但這樣根目錄的轉址會失敗
http://host.domain.tw/ 轉到 http://host.domain.tw/index/index.php
請問我要怎麼解決呢?或是有其他方式?
我設定
<FilesMatch "\.*">
Order Allow,Deny
Deny from all
</FilesMatch>
<FilesMatch "\.php">
Order Allow,Deny
Allow from all
</FilesMatch>
但這樣根目錄的轉址會失敗
http://host.domain.tw/ 轉到 http://host.domain.tw/index/index.php
請問我要怎麼解決呢?或是有其他方式?