htaccess - 如何将所有“.php”页面重定向到“/”页面?

时间:2018-05-08 10:12:04

标签: .htaccess

我的网址如下:

mywebsite.com/subpage-name.php

我希望我的新链接看起来像这样:

mywebsite.com/subpage-name/

如何将所有“.php”页面重定向到“/”页面?

1 个答案:

答案 0 :(得分:1)

你必须使用正则表达式在.htaccess中添加RewriteRule。

RewriteRule ^(.*)$ http://www.thenewdomain.com/$1 [R=permanent,L]

确保添加

RewriteEngine on

在应用重定向规则之前。

快乐编码。