我试图从
重定向我的页面来自http://domain.com/article.php?id=23232的
在.htaccess中使用此语法
RedirectMatch 301 article.php?id=(.*)$ http://domain/article/$1
请问这是什么错误?
答案 0 :(得分:1)
您无法使用RedirectMatch
匹配查询字符串。请改用mod_rewrite
规则:
RewriteCond %{QUERY_STRING} ^id=([^&]*)
RewriteRule ^article\.php$ http://domain.com/article/%1? [L,R=301,NC]