@spacedust
Thanks for sharing settings mate.. i will try them today with nginx and apache and run some beck's..
@mustafar
Is it possible to implement some nginx rewrite rules for nginx and opencart ?
I tested opencart yesterday with nginx and it seems that nginx cant define the language so all characters except english appears strange.. also seo urls wont work at all..
With apache everything works fine as it reads .htacess file..
If it helps i found those rules
location / {
if ($host != 'www.example.com') {
rewrite ^/(.*)$ http://www.example.com/$1 permanent;
}
try_files $uri @opencart;
}
location @opencart {
rewrite ^/(.+)$ /index.php?_route_=$1 last;
}
location /admin/ {
index index.php;
}
location ~* (.(tpl|ini))$ {
deny all;
}
I havent test them yet i will do it when i got home, can you please guide me on where to apply them and if its compatible with kloxo mr nginx conf please ?
Thanks