Remove part of URL with RewriteRule

你说的曾经没有我的故事 提交于 2020-01-06 15:03:37

问题


I need remove prefix /en from all URL, eg.

www.mydomain.com/en/foo/bar/index.html -> www.mydomain.com/foo/bar/index.html

I've tried with:

RewriteRule ^/en/(.*) /$1 [L]

or

RewriteRule ^/en/\d+-(.+) /$1 [R,L]

but nothing happens


回答1:


You can use in your .htaccess:

RewriteEngine on 
RewriteRule ^en/(.*) /$1 [NC,L]

Because in .htaccess, RewriteRule first URL never starts with /



来源:https://stackoverflow.com/questions/32332624/remove-part-of-url-with-rewriterule

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