I am trying to rewrite a URL for a Dreamhost served website.
I want to do the following:
Goal:
Rewrite only URLs that start with an
x
.
This:
http:// domain.com/x23
Should become:
http:// domain.com/index.php/lookup/code/x23
I tried this:
RewriteEngine On
RewriteRule ^(x[0-9a-z])$ index.php/lookup/code/$0 [L]
but it doesn't seem to work.
What am I missing?