我有这个网址:
example.com/news/article/254
如何使PHP脚本将此URL(example.com/blog/article/254
)作为example.com/news/article/254
处理,
和example.com/blog
为example.com/news
等。
答案 0 :(得分:1)
如果将以下代码添加到.htaccess文件中,则该代码应该有效。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^blog/article/(.+?)\/?$ /news/article/$1 [R=301, L]
</IfModule>
如果您不想告诉机器人等您已永久重定向,请取出&#34; R = 301,&#34;上方。