Hi guys!
I am trying to create friendly url with a .htaccess file, but I canīt get it to work.
Here are some examples of my links that I am trying to rewrite:
www.mydomain.com/index.php?page=soccer&id=3
www.mydomain.com/index.php?page=tennis&id=4
www.mydomain.com/index.php?page=basketball&id=1
www.mydomain.com/index.php?page=icehockey&id=2
and this is want I want to achieve:
www.mydomain.com/soccer/3
www.mydomain.com/tennis/4
www.mydomain.com/basketball/1
www.mydomain.com/icehockey/2
I have tried with something like this:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/([0-9]+)\.html$ index.php?page=$1-$2
I thank everyone in advance for any help I can get.
Best regards.