1

I have to rewrite the following URLs, can someone please suggest the contents of a .htaccess file that will do this.

For example:

example.com/retrieve_cat.php?subcat=364&c=134

needs to look like:

example.com/category/subcategory/

Is it possible to rewrite this?

1 Answer 1

1
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteRule ^retrieve_cat.php?subcat=(.*)&c=(.*) $2/$1/
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.