我想如何为新网址添加前缀?
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
答案 0 :(得分:0)
尝试使用以下规则我们正在跳过具有s_前缀的网址。
RewriteEngine on
RewriteRule ^\b(?!s_)(\w+)$ http://localhost/redirect/s_$1 [R=301,L]