简体   繁体   中英

Remove last Path from URL using .htaccess


I need to create a RewriteRule on my .htaccess file which removes the Path ("page-2") if it's included at the end of the URL. So for example:

http://myhost.com/path/page-2

should redirect to:

http://myhost.com/path

I've found a similar solution on SO:

RewriteEngine On

RewriteRule ^([^/.]+)/?$ /$1/page-2/ [L]

However it does not work for me. No redirection happens. Any help?

You need to have this rule:

RewriteEngine On

RewriteRule ^(.+?)/page-2/?$ /$1 [L,NC,R=301]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM