Maarten Cappaert
Maarten Cappaert

Reputation: 47

Removing last subdirectory from url with htaccess

I am trying to remove the last directory /feed from all urls with htaccess.

/feed is added after different subdirectories of the root at different depths and my goal is to keep the entire url regardless its subdirectories except the last /feed.

I've tried different rewriterules and redirectmatches without success.

Upvotes: 1

Views: 123

Answers (1)

anubhava
anubhava

Reputation: 785276

You can use this rule in root .htaccess:

RedirectMatch 301 (?i)^/(.*?)/feed/?$ /$1

Upvotes: 1

Related Questions