1

我最近更新了我的.htaccess文件以隐藏.php的 url 扩展名。它很好用,当我尝试访问domain.com/index时,它会显示 php 文件。

当我输入domain.com/index.php时,它会将我重定向到domain.com/index url 并同时显示 .php 文件。

出于安全原因,我想将所有其他扩展名重定向到无扩展名 url 以显示 .php 文件。我的问题是,我无法将.htaccess配置为重定向众所周知的扩展名,如.html .asp。aspx .shtml等添加到非扩展 url,并获取显示为内容的 .php 文件。

我的 .htaccess 文件如下所示:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

# php extension to no extension url
RewriteCond %{THE_REQUEST} ^[A-Z]+\s.+\.php\sHTTP/.+
RewriteRule ^(.+)\.php $1 [R=301,L]


# no extension to the .php file
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php [L]

# this is for the index
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
4

1 回答 1

2

你可以尝试这样的事情:

# php extension to no extension url
RewriteCond %{THE_REQUEST} ^[A-Z]+\s.+\.php\sHTTP/.+
RewriteRule ^(.+)\.[a-zA-Z0-9]+$ $1 [R=301,L]

然后它不仅会重定向.php扩展名,还会重定向任何人。要使用它,请确保您的 URL 末尾没有带点和字母数字字符串。

于 2013-03-01T14:26:20.493 回答