Wonder does anyone know how to fix this? example i want it to be http://www.test.com/testing instead of http://www.test.com/index.php?_route_=testing Below is my rewrite rule, i not sure is it correct. hope someone can guide me RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA] RewriteCond %{QUERY_STRING} ^route=common$/ RewriteCond %{REQUEST_METHOD} !^POST$ RewriteRule ^index\.php$ http: //%{HTTP_HOST}? [R=301,L] RewriteCond %{HTTP_HOST} ^test.com RewriteRule (.*) http://www.test.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?_route_=$1&%{QUERY_STRING} [L,QSA]