Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将链接从外部页面重定向到应用程序到子文件夹中。
我的“旧”链接是这样的:
https://www.somepage.com/index.cfm?id=abc
我现在必须更改为:
https://www.somepage.com/mem/index.cfm?id=abc
虽然我通知所有用户更新他们的链接,但我确信我将不得不追一些一段时间,所以我的想法是尝试设置一个重定向服务器端。我不确定如何在重定向上保留 url 参数。这样的事情可能吗?
感谢您的一些见解!
使用QSA(Query String Appended) 保留查询字符串。尝试 :
QSA
RewriteEngine On RewriteRule /index.cfm$ /mem/index.cfm [QSA,L]