Quantcast
Channel: Kadjo » Miscellaneous
Viewing all articles
Browse latest Browse all 10

Opencart SEO url in Nginx sample

$
0
0

Here is my sample URL rewriting definition for opencart SEO links that I hope to be useful on other developers running in NGINX. Notice that I have /opencart/ as the path of my opencart installation.

HTH

    location /opencart/ {
        try_files $uri @opencart;
    }

    location @opencart {
        rewrite ^/(.+)$ /opencart/index.php?_route_=$1 last;
    }

    location /opencart/admin/ {
        index index.php;
    }

    location ~* (\.(tpl|ini))$ {
    deny all;
    }


Viewing all articles
Browse latest Browse all 10

Latest Images

Trending Articles



Latest Images