I have some really big problems changing the appearences of my urls..
Cant seem to get this to work:
I want to change this url:
http://www.enkelt-webdesign.dk/index.php?sid=1&titel=FORSIDE
Into this url:
http://www.enkelt-webdesign.dk/Forside
I have tried many things in my .htacess file now, and just dont get the desired result.
This is what i have now, which does abslutely nothing:
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} ^sid=1&titel=FORSIDE$
RewriteRule ^Forside$ /index.php?sid=1&titel=FORSIDE
</ifModule>
Dont I need to match the query string in the RewriteCond, and then in the RewriteRule below it, just state how I want the matched URL to appear?????
Help is highly appreciated, as I am getting grey hair and bald trying to make this work!