Хорошо, поэтому у меня есть этот URL в моем приложении opencart, и он хорошо работает
http://site.com/index.php?route=information/contact
, но клиенты ненавидят URL и хотят
http://site.com/contact
Я подумал, что я мог бы просто сделать этов моем htaccess и все было бы хорошо, но посещая URL я ничего не получаю
RewriteRule ^(contact)$ index.php?route=information/contact [L,QSA]
любые идеи
вот мой htacess
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
RewriteRule ^contact$ /index.php?route=information/contact [L,QSA]