user3307827
user3307827

Reputation: 556

change URL via htaccess

how can I change this URL

http://example.com/tag/[dir]/[dir]/...

to

http://example.com/tag/search/[dir]/[dir]/...

for example

http://example.com/tag/44/name/445

to

http://example.com/tag/search/44/name/445

But

if http://example.com/tag/search/name/445 does not change!

Upvotes: 0

Views: 22

Answers (1)

anubhava
anubhava

Reputation: 786091

Put this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteRule ^(tag)/((?!search/).+)$ /$1/search/$2 [L,NC,R=301]

Upvotes: 1

Related Questions