Most pages like domain.com/newproducts, go to index.php?page=<title>
But I want to do a specific one:
domain.com/mobile, to go to index_ip.php?page=ihome.
I thought this would work, but it doesn't:
Code: Select all
RewriteRule ^([^/\.]+)/?$ index.php?page=$1&menu=home [L]
RewriteRule ^mobile/ index_ip.php?page=ihome [L]