1

I need to shorten urls like this using my htaccess file.

http://example.org/product/category/my-product/

to

http://example.org/my-product

how would I go about this.

1 Answer 1

1

You can use this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On RewriteRule ^((?!product/category/).+)$ /product/category/$1 [L,NC] 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.