Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hello guys I'm using this htaccess script to set search.php?q=sometng&type=all to search/sometng/

RewriteCond %{QUERY_STRING} q=(.*)&type=all

RewriteRule ^search\.php$  /search\/%1\/? [R=301,L]

it works succesfully BUT I GET 404 error!

I've tried to put

RewriteRule ^search/(.*)/$ search.php?q=$1&type=all

it returns Attempting to open is not going to end any time entered into a routing loop.

whats wrong with this?

share|improve this question

2 Answers

Try something like:

RewriteRule ^search/([a-z][A-Z])/([a-z][A-Z])/$ /search.php?q=$1&type=$2
share|improve this answer

Try

RewriteRule ^search/([^/]+)/([^/]+)$ search.php?q=$1&type=$2 [L]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.