Okay, I have at the moment:
PHP Code:
RewriteEngine on RewriteRule ^([^/]*)\.html$ $1.php
Which converts something.html to something.php. However, I want to make it go something.html to parse.php?action=something. I tried:
PHP Code:
RewriteEngine on Rewrite Rule ^([^/]*)\.html$ parse.php?action=$1
But that doesn't work. I get 404 error saying that something.html can't be found. I have never used mod rewrite before and don't really get these expressions so if someone could help me out I would be very grateful. =)
|