1

I have link like this:

<a href="index.php?page=login">LOG</a>

And my question is how to make it shorter

I want links like this -> www.page.com/login but i dont know how

help!

Enteee
  • 137
  • 13

1 Answers1

0

Try this:

RewriteEngine on
RewriteRule ^login index.php?page=login [L,QSA]
kelsier
  • 4,050
  • 5
  • 34
  • 49
  • .htaccess file must be in catalog with index.php? – Enteee Mar 19 '14 at 12:01
  • See this post http://stackoverflow.com/questions/2103528/where-to-put-htaccess-file – kelsier Mar 19 '14 at 12:01
  • Check this post then : http://stackoverflow.com/questions/12202387/htaccess-not-working-apache. I mean I hope you have enabled apache to consider .htaccess files – kelsier Mar 19 '14 at 12:08