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.

This is the content of my .htaccess file:

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([^/]+)(/.+)? /negocio$2?shopURL=$1 [L,QSA]

RewriteOptions Inherit

It takes not found directories and transform them into a php variable while retaining the rest of the url. When I go to:

http://lujanventas.com/test/asdf

The address bar shows:

http://lujanventas.com/negocio/?shopURL=asdf

(It should still show: "http://lujanventas.com/test/asdf")

What am doing wrong?

share|improve this question
Have you tried removing the QSA flag? – Surreal Dreams Mar 26 '12 at 4:48
I just tried. It seems it works exactly as before. – Liso22 Mar 26 '12 at 4:51
What is "the URL that was typed initially" supposed to mean? – Ignacio Vazquez-Abrams Mar 26 '12 at 4:58
When I go to: http://lujanventas.com/test/asdf I want to see that URL not '/negocio/?shopURL=asdf'. – Liso22 Mar 26 '12 at 5:05
Is /negocio an actual directory that exists? – Pekka 웃 Mar 26 '12 at 5:28
show 1 more comment

1 Answer

up vote 1 down vote accepted

Fixed it by adding a / after the 2.

RewriteRule ^([^/]+)(/.+)? /negocio$2/?shopURL=$1 [L,QSA]
share|improve this answer
Well done. Don't forget, you can accept your own answer. – Surreal Dreams Mar 26 '12 at 13:36

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.