0

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!

1 Answer 1

1

Put this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteRule ^(tag)/((?!search/).+)$ /$1/search/$2 [L,NC,R=301]
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.