如何重定向此页面: example.com/index.php?option=1&view=news 对此 /消息
我打算简单
Redirect /index.php?option=1&view=news /news
但它不起作用
答案 0 :(得分:1)
您需要使用mod_rewrite
来匹配查询字符串:
RewriteEngine On
RewriteCond %{THE_REQUEST} /index\.php\?option=1&view=news [NC]
RewriteRule ^ /news? [R=301,L]