Quantcast
Channel: iT邦幫忙
Viewing all articles
Browse latest Browse all 15645

Linux Apache權限設定

$
0
0
我需要讓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

請問我要怎麼解決呢?或是有其他方式?

Viewing all articles
Browse latest Browse all 15645

Trending Articles