Is there a way to change a url with multiple variables, for example this url:
index.php?p=place&c=Munich
to:
/place/munich
with .htaccess?
You can use this rule in root .htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ /index.php?p=$1&c=$2 [L,QSA]
http:// or a slash /