I need to get this URL /index.php?side=forside to look like this /forside/ and still get the contents from my includes folder to my index page.
How can I do this with an .htaccess file? I already read a lot of other questions and answers on the topic, but they don't work or the change my URL to ex. /side/forside or /side/forside.html and that is not what I want...
I have tried this:
Options +FollowSymLinks
RewriteEngine on
RewriteRule index/side/(.*)/ index.php?side=$1
But when I remove the index/side/ it doesn't work?