我的主要public_html目錄具有以下的.htaccess規則:如何停止子目錄繼承父母的htaccess的規則
Options +FollowSymLinks
IndexIgnore */*
<IfModule mod_rewrite.c>
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
</IfModule>
的問題是,我當時有一個名爲源的子目錄,我想那個目錄列表其中的文件(因爲沒有索引文件)。問題是上述父目錄的htaccess規則導致目錄索引中沒有顯示源文件(它只是列出了一個空白索引)。
我該如何解決這個問題?
THANKS
謝謝,這工作完美! – user1280853 2012-03-29 16:02:01
你爲我節省了多少解決方案。 – Naeem 2014-02-19 10:46:20