> RewriteEngine on
> RewriteRule ^([A-Za-z])$ /$1/ [R]
> RewriteRule ^([A-Za-z])/$ index.php?object=$1
>
> Now, if I go http://mysite.com/signup/ it does not map it but only
> displays
> a 404. What am I missing?

That you match only one character in the regexp, instead of an arbitrary
number.

What you need is something like
RewriteRule ^([A-Za-z]+)/$ /index.php?object=$1

Joost


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to