hi, im new to mod_rewrite and need a bit of help.
I'd like to create some user friendly URLs that point to a php file. So something like:
http://www.domain.com/people/joe_bloggs
will pull up:
http://www.domain.com/people/view.php?name=joe_bloggs
currently my .htaccess file looks like this. but its not working. all help appreciated...
RewriteEngine on
RewriteBase /
RewriteRule ^/people/([A-Za-z0-9])?$ /people/view.php?name=$1 [L,NC]
This isn't working. What should the rule be?