Rewriting URL with .htaccess local in XAMPP
问题 My .htacces begins with RewriteEngine on RewriteBase / (I tried it also without RewriteBase...) I tried all of the following rewriting rules to rewrite the URL index.php?page=news to /blog RewriteRule ^/?([-A-Za-z0-9]+)/([-A-Za-z0-9]+)/blog$ index.php?page=$1 [L] RewriteRule ^([^/]*)/blog$ /sites/blog/index.php?page=$1 [L] RewriteRule ([a-zA-z]+)/([a-zA-z]+)/blog$ index.php?page=$1 [L] Nothing works - no error. Mod_rewrite is installed and working. I restarted Apache and MySQL everytime I