Hi guys,
I'm trying to make my URLs clean using mod_rewrite module. I've read many articles and tutorials about it and it seems it's partly working...PARTLY...I don't know why, so I'd really appreciate if anyone could help
This is the URL of the page I'm talking about:
And this is the content of my .htaccess file:
Options +FollowSymlinks
RewriteEngine On
RewriteRule ([-])-([-])$ /?id=$1&page=$2 [L]
This works but only for my guestbook since all the other links of the main menu have only one variable in their URLs. If I add another line, like this:
RewriteRule ([/]*)$ /?id=$1 [L]
It stops working
Any help appreciated!