我有三段代码。
这是第一个:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
第二个:
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule [^/]$ %{REQUEST_URI}/ [L,R,NE]
第三个:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w-_]+)/$ profile/index.php?username=$1 [QSA,L]
第一个从 URL 栏中删除 .php 扩展名
第三个显示目录的内容。例如,example.com/billgates/显示以下页面内容:example.com/profile/index.php?username=billgates
第二个添加尾部斜杠并重定向#2 的非尾部斜杠。例如,example.com/billgates重定向到example.com/billgates/.
所有代码都可以工作,但不能很好地结合在一起。这是问题所在:
如果我去example.com/login它会删除 .php 扩展名并且它可以工作。但问题是,如果我在 末尾手动添加斜杠/login/,它会重定向到:example.com/login/.php/但它应该将我重定向到,/login因为它不是目录而只是一个页面。但如果/login/是一个目录,那么它不应该重定向。
完整的.htaccess:
RewriteEngine On
ErrorDocument 404 /404.php
...the three pieces of codes above
茅侃侃