Hi I am very new to mod_rewrite, so I thought I'd start out with something simple... what i'm trying to do is turn this:
http://localhost/forum.php
into this:
http://localhost/forum/
what I have in my .htaccess file is this:
RewriteEngine on
RewriteRule forum.php$ forum/ [R=301,L]
This does nothing, i get no errors, I don't even know if it's trying to work or not? Can anyone help?