我的网站有多个PHP文件和同名目录,如下所示:
/projects.php
/projects
/projects/something.php
我已设法使用以下规则http://example.com/projects重写http://example.com/projects.php(使用答案here):
RewriteEngine On
# Disable automatic directory detection
DirectorySlash Off
# Hide extension
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
但是,当我明确地将目录斜杠输入到URL时,它会访问该文件夹。 现在:
http://example.com/projects --> http://example.com/projects.php [file]
http://example.com/projects/ --> http://example.com/projects/ [folder]
我知道为什么这样做(projects/.php
不是文件)。我修复它的尝试包括检查它是否是一个文件夹,并用什么都替换斜线并改为访问它。
新的.htaccess:
RewriteEngine On
# Disable automatic directory detection
DirectorySlash Off
# Hide extension
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
# Folder fix
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule (.*)/$ $1.php
这可以按预期工作,但它在客户端完全混乱,因为客户端的URL中仍然有一个文件夹,因此当它尝试获取相对路径时,它会失败。
现在我考虑使用[R=301]
标志进行重定向,但据我所知,%{REQUEST_FILENAME}
与服务器相关,因此重定向到该服务器无效。
如果有人能指出我正确的方向,那就非常感激了!
答案 0 :(得分:8)
尝试将此行放在顶部:
Options -MultiViews
您的.php隐藏规则应为:
RewriteEngine On
# Disable automatic directory detection
DirectorySlash Off
RewriteCond %{DOCUMENT_ROOT}/$1.php -f
RewriteRule ^(.+?)/?$ /$1.php [L]