its basically something like this
i have a site where in all the pages are dynamically generated but i wanna make use of the mod rewrite of apache
i am not sure if this is not working on local server such us windows xp with apache.
i tried to make a .htaccess on the directory but i dont if its working or not.
basically here the .htcaccess i made
RewriteEngine On
RewriteBase /
RewriteRule ([/]+)_([a-z0-9]+).html$ test.php?showtopic=$1 [QSA]
now what i just want to do is if i visit the site something like this
http://localhost/1.html
it will automatically call the test.php with the given parameter of 1 as the ID.
what do u think should i do?
thanky ou in advance.