I found a lot of solutions online but all of them require a page, and i am trying to do it on the main page like
www.domain.com?address=germany
to
I found a lot of solutions online but all of them require a page, and i am trying to do it on the main page like
www.domain.com?address=germany
to
You should have your htaccess rule like following. Rules which are posted by OP in OP's answer doesn't look correct to me. Please make sure you clear your browser cache before testing your URLs.
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ /index.php?address=$1 [L]
Just edit the .htaccess and write this
RewriteEngine on
RewriteRule ^(.*)$ /index.php?address=$1 [L]