Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having some troubles with url rewrites in htaccess.

I have all my PHP pages in subfolder /pages.

These are my urls:
http://www.example/tickets
http://www.example/en/tickets
http://www.example/fr/tickets
http://www.example/nl/tickets

--> all these should point to /pages/tickets.php

Currently I use this in htaccess:

RewriteRule ^(nl|fr|en)/tickets /pages/tickets.php [L]

The urls WITH language string work but when I ommit the language string I get a 404 error.

How can I solve this?

share|improve this question
doesn't seem to do the trinck. I'm still getting a 404 page :s – Bundy Apr 30 '10 at 13:07

1 Answer

up vote 1 down vote accepted

You could use this rule to remove the language identifier for all following rules:

RewriteRule ^(nl|fr|en)/(.*) $1

Or, if you just want it to be optional for this single rule:

RewriteRule ^((nl|fr|en)/)?tickets$ /pages/tickets.php [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.