-1

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

www.domain.com/germany

RavinderSingh13
  • 130,504
  • 14
  • 57
  • 93

2 Answers2

1

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]
RavinderSingh13
  • 130,504
  • 14
  • 57
  • 93
0

Just edit the .htaccess and write this

RewriteEngine on
RewriteRule ^(.*)$ /index.php?address=$1 [L]