.htaccess - Htaccess mod_rewrite: how to change page.php to /page? -
simple question:
domain.com should lead index.php
and domain.com/lala (or other word) should lead products.php?name=lala
could give me rewrite rule?
thanks
assuming have .htaccess
file in web root /
directory
rewriteengine on rewritebase / rewritecond %{request_filename} !-d # not dir rewritecond %{request_filename} !-f # not file rewriterule ^(.*)$ products.php?name=$1 [r=301,l] rewritecond %{request_uri} ^/$ rewriterule ^ index.php [r=301,l]
Comments
Post a Comment