不平行目录的 htaaccess 文件重定向
我需要向我的 .htaccess 文件添加一条规则来执行此操作:
从旧域转到: http://www.hikingsanfrancisco.com/outdoors/trees/tanoak.php
到一个新域,如下所示: http://www.comehike.com/outdoors/trees/129/Tanoak
我添加了这样的规则: RewriteRule http://www.hikingsanfrancisco.com/outdoors/trees/tanoak.php http://www.comehike.com/outdoors/trees/129/Tanoak
但它不起作用:(
关于如何完成我需要做的事情有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于那些无法获得类似功能的人,请尝试以下操作:
RewriteRule ^outdoors/swift_bird.php http://www.comehike.com/outdoors/birds/bird.php?bird_id=1 [R,L]
我知道路径与问题的项目不同。但没关系。不同之处似乎是将 [R,L] 放在行尾。这是来自其他地方的建议,所以我不确定它到底做了什么,但它使重定向起作用了:)
For those who can' get a similar thing to work, try something like this:
RewriteRule ^outdoors/swift_bird.php http://www.comehike.com/outdoors/birds/bird.php?bird_id=1 [R,L]
I know the paths are of different items than the question. But it doesn't matter. The difference seemed to be putting the [R,L] at the end of the line. It was a suggestion from elsewhere, so I am not sure what it does exactly, but it made the redirect work :)