tags:

views:

14

answers:

1

I have a simple mod_rewrite question.

What do I need to write in the .htaccess file to have:

http://www.example.com/index.php?route=account/login

I want the URL to look like this

http://www.example.com/account/login

Thanks.

+1  A: 
RewriteBase /
RewriteRule ^(.*)$ /index.php?route=$1
Ignacio Vazquez-Abrams
Mabye it's my wampserve. Doesn't seem to be working. Modwrite module is turned on.
Yada