Hello, I was thinking about using mod rewrote to make my site more search engine friendly.
So i want to transform: http://www.mysite.com?id=1234 into something like this: http://www.mysite.com/1234/any-text-.html
Thank you.
No idea if this will work, i'm very new to rewrite. I figure I'd try though.
Options +FollowSymLinks RewriteEngine on RewriteRule \/(.)\/(.).html$ index.php?id=$1&text=$2
It doesn't seem to work. I get a "Not Found" error. Thanks.
I did it: RewriteRule ([0-9]+)/[/]+.html$ /index.php?id=$1 [QSA,L] Thanks.