Jan Doleží
Jan Doleží

Reputation: 65

redirect .htaccess - remove last part of url

I need redirect url like: www.domain.com/xx/yy/itinerar to www.domain.com/xx/yy. The value of yy can be various. I have

RewriteCond %{REQUEST_URI} (.*)itinerar

but i have trouble with RewriteRule.

Upvotes: 3

Views: 792

Answers (1)

anubhava
anubhava

Reputation: 784888

You can use this redirect rule:

RewriteEngine On

RewriteRule ^(.*)/itinerar/?$ /$1 [L,NC,R=301]

Upvotes: 2

Related Questions