Reputation: 556
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
But
if http://example.com/tag/search/name/445 does not change!
Upvotes: 0
Views: 22
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