.htaccess 将某些内容重定向到某些内容.html
如何直接
http://www.mysite.com/something
到
http://www.mysite.com/something.html
And
http://www.mysite.com/#something
toThanks
http://www.mysite.com/something.html
。
How to derirect
http://www.mysite.com/something
to
http://www.mysite.com/something.html
And
http://www.mysite.com/#something
to
http://www.mysite.com/something.html
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于第一个,您可以使用,
或者更一般地说,如果您希望
http://mysite.com/X
转到X.html
,http:// www.mysite.com/#something
无法使用重写规则进行重定向,#
之后的所有内容都不会传递到服务器。您将需要使用 JavaScript 来重定向这些链接。For the first you can use,
Or more generally if you want
http://mysite.com/X
to go toX.html
,http://www.mysite.com/#something
can't be redirected with a rewrite rule, everything after the#
never gets passed to the server. You will need to use JavaScript to redirect those links.