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

时间:2013-11-06 17:54:44

标签: php regex apache .htaccess mod-rewrite

我的网站有多个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}与服务器相关,因此重定向到该服务器无效。

如果有人能指出我正确的方向,那就非常感激了!

1 个答案:

答案 0 :(得分:8)

尝试将此行放在顶部:

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]