.htaccess remove index.php and hide parameter key from URLs – SEO
I have the following URL www.example.com/index.php?tag= xxx I want to make it like the following using .htaccess www.example.com/xxx I done it with this code: Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}…