Forum Moderators: bakedjake
i have site.com/in.php?id=xxx
i need site.com/xxx
please help to write this mod.
Hi and welcome to Webmasterworld
You could try the following in your .htaccess file
RewriteEngine on
RewriteRule ^([^.]+)$ in.php?id=$1 [L]
Please note that this could affect the rest of the files in your root folder.
You could also try:
RewriteEngine on
RewriteRule ^([0-9]+) in.php?id=$1 [L]
Please let us know if this works.