php – htaccess – 重写具有相同名称的目录的文件

前端之家收集整理的这篇文章主要介绍了php – htaccess – 重写具有相同名称的目录的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个网站,有多个 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}是相对于服务器的,所以重定向到它不起作用.

如果有人能指出我正确的方向,我将不胜感激!

尝试将此行放在顶部:
Options -MultiViews

Read More About it

你的.PHP隐藏规则应该是:

RewriteEngine On

# Disable automatic directory detection
DirectorySlash Off

RewriteCond %{DOCUMENT_ROOT}/$1.PHP -f
RewriteRule ^(.+?)/?$/$1.PHP [L]

猜你在找的PHP相关文章