i have this file that is on the root folder called sumbit.php
and when i acesss a page like this for exmaple
http://www.example.com/viewtopic.php?topic=14
the new url is
http://www.example.com/topic/14
on firebug its saying its accessing http://www.example.co.uk/topic/submit.php
, when its meant to access http://www.example.co.uk/submit.php
my .htaccess code
RewriteEngine On
RewriteRule ^user/([^/]*)$ /viewprofile.php?user=$1 [L]
RewriteRule ^topic/([^/]*)$ /viewtopic.php?topic=$1 [L]
i dont seem to see what the problem is, p.s. the sumibit.php is from a form submit action