I would like to improve my site by using the page title instead of the php get method.
What do I need to write in .htacces
if i would convert /index.php?id=1
to /page
I would like to improve my site by using the page title instead of the php get method.
What do I need to write in .htacces
if i would convert /index.php?id=1
to /page
RewriteRule ^page$ /index.php?id=1 [L]
if you want to rewrite every index.php?id=ID_HERE use this:
RewriteRule ^page/([^/]*)$ /index.php?id=$1 [L]