我想将动态网址重定向到主页,网址有4个参数
http://example.com/abc.php?slug=Adjective&getId=2&sub_id=1&inner_id=67
答案 0 :(得分:0)
要将动态网址重定向到主页,您可以使用以下规则
RewriteEngine on
RewriteCond ℅{THE_REQUEST} /abc.php\?slug=Adjective&getId=2&sub_id=1&inner_id=67\s [NC]
RewriteRule ^ /? [L,R]
这会将http://abc.php?slug=Adjective&getId=2&sub_id=1&inner_id=67重定向到http://example.com/。
请勿从重写目标中删除问号?,因为这会丢弃旧的查询字符串。