htaccess - 为新网址添加前缀

时间:2017-09-08 05:08:53

标签: .htaccess

我想如何为新网址添加前缀?

RewriteEngine on

RewriteRule ^(.*) http://localhost/redirect/s_$1 [R=301,L]

我希望它使用s_前缀示例s_about.html

重定向到新网址

但它重定向我    http://localhost/redirect/s_s_s_s_s_s_s_s_s_s_s_s_s_s_s_s_s_s_s_s_s_index.html

1 个答案:

答案 0 :(得分:0)

尝试使用以下规则我们正在跳过具有s_前缀的网址。

RewriteEngine on

RewriteRule ^\b(?!s_)(\w+)$ http://localhost/redirect/s_$1 [R=301,L]