我的网址如下:
mywebsite.com/subpage-name.php
我希望我的新链接看起来像这样:
mywebsite.com/subpage-name/
如何将所有“.php”页面重定向到“/”页面?
答案 0 :(得分:1)
你必须使用正则表达式在.htaccess中添加RewriteRule。
RewriteRule ^(.*)$ http://www.thenewdomain.com/$1 [R=permanent,L]
确保添加
RewriteEngine on
在应用重定向规则之前。
快乐编码。