htacces 无需参数即可重定向
我有 :
somesite.com/default.asp?id=param1&id2=param2
并想
newsite.com/home
在“?”之后重定向到不带任何参数的位置在网址中。
有什么想法吗?
感谢
解决方案:
找到它:
RewriteRule ^default.asp(.*)$ http://www.mysite .com/index.php/? [R=301,NC,L]
I have :
somesite.com/default.asp?id=param1&id2=param2
and want to redirect to
newsite.com/home
without any parameter after the "?" in the URL.
any idea?
And thanks
solution:
found it :
RewriteRule ^default.asp(.*)$ http://www.mysite.com/index.php/? [R=301,NC,L]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解你的问题,那很简单:
If I understand your question correctly, that's easy: