RewriteRule working local but not on remote server
- by m0tv
I have a .htaccess file with one simple RewriteRule:
RewriteEngine on
RewriteRule ^([A-Za-z0-9-]+)$ ?site=$1
I want to have an url like http://www.example.com/imprint and forward it to http://www.example.com/?site=imprint
I checked this rule with an RewriteRule tester which gave me the results I want to achieve. On my local development system…