2
任何人都可以在.htaccess中幫助我。如何爲現有文件和文件夾設置.htaccess
我使用的情況是,如果沒有的index.php目錄http://domain_name/user/然後加載的index.php,否則設置重寫規則調用forbidden.php。
我做了一點,但沒有成功。 .htaccess我的服務器上的代碼是 -
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase/
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond ^(.*)$/index.php !-d
RewriteCond %{REQUEST_URI} (.*)/$
RewriteRule ^(.*)$ forbidden.php?handle=$1
</IfModule>
非常感謝。我以其他方式做了,但這是一個更簡單的方法,所以我會更改我的代碼。 – 2012-01-13 13:07:47