动态 URL 重定向
如何将我的网址 - www.example.com/home.php?rid=888601032 重定向
到 www.example.com/examplepage.php
我已经尝试了几个 htaccess 代码 7 我是 htaccess 的新手,如果有人能给我,我将不胜感激正确的重定向代码。
How to redirect my url - www.example.com/home.php?rid=888601032
to www.example.com/examplepage.php
i have tried several htaccess codes 7 Im new to htccess, I would appreciate if someone can give me the correct redirect code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要的重定向非常简单。
它会重定向任何带有 RID 的根请求。
The redirect you need is incredibly simple.
It redirects any root request with the RID within it.
语法为:
有 3 部分;
这些部分由一个空格分隔,并且应该在一行上。
例如,如果您想将用户从您帐户 myaccount 的 www 目录中的 oldfile.html 重定向到 newpage.html,则语法应为
The syntax is:
There are 3 parts;
These parts are separated by a single space and should be on one line.
For example, if you want to redirect users from oldfile.html in the www directory of your account, myaccount, to newpage.html, the syntax should be
将其放入
.htaccess
文件中:如果您不希望重定向可见,请保留
[R]
标志。希望这有帮助!
Put this in yout
.htaccess
file:If you dont want the redirect to be visible, leave the
[R]
flag.Hope this helps!
使用 php 来做这件事不是更好吗?
这取决于你想要做什么,但是如果你想根据“rid”参数重定向到不同的页面,或者如果你想在重定向用户之前执行一些操作(例如设置cookie),那么它会更灵活。
Wouldn't be better to use php to do this?
It depends on what you want to do, but it would be more flexible if you want to redirect to a different page depending on the "rid" parameter, or if you want to do some operation (like setting a cookie) before redirecting the user.