delete a level in a path URL Rewriting
开发者_如何学编程I have this url:
www.company1.com/level1/level2
I would to rewrite Url to www.company1.com/level2
Is it possible with URL-Rewriting in Apache?
This rule should do it:
RewriteRule ^[^/]+/(.*) /$1 [L,R=301]
If you don’t want to use that rule in the .htaccess file in the document root directory but in the server or virtual host configuration, precede the pattern with a /
:
RewriteRule ^/[^/]+/(.*) /$1 [L,R=301]
精彩评论