htaccess simple Redirect doesn't work with trailing slash

≯℡__Kan透↙ 提交于 2020-01-11 11:34:31

问题


I find a lot of answers to this question (and I have read dozens of them), but they are all about more advanced stuff with patterns and such stuff. I just need a very simple and basic redirect for static urls. If I add a trailing slash to the url, the redirect doesn't work and I just can't figure out why. Example:

RewriteEngine On
Redirect 301 /content https://www.example.com/site/content.html
Redirect 301 /content/ https://www.example.com/site/content.html

https://example.com/content does work, https://example.com/content/ redirects to https://example.com/site/

What is the problem here?


回答1:


Don't mix mid_rewrite rules with Redirect (mod_alias). Use this rule as very first rule in your root .htaccess:

RewriteEngine On
RewriteRule ^content/?$ https://www.example.com/site/content.html [L,NC,R=302]


来源:https://stackoverflow.com/questions/27423192/htaccess-simple-redirect-doesnt-work-with-trailing-slash

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!