当我将301链接重定向到添加了查询字符串的新URL时,我想隐藏或删除它,该怎么办。 我的.htaccess像:
localhost:8080/web/guest/wsw/-/my-portlet/views/wizard/id=2
结果: RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?mod=mod&cmd=$1 [L]
Redirect 301 /category1.html http://example.com/list/category1
我希望它显示如下:http://example.com/list/category1?mod=mod&cmd=list/category1
谢谢。