老域名博客

各大域名服务商使用教程

opencart的nginx 伪静态规则?

opencart的nginx 伪静态规则

# SEO URL Settings
  # Nginx configuration of OC htaccess
  location = /sitemap.xml {
    rewrite ^(.*)$ /index.php?route=feed/google_sitemap break;
  }

  location = /googlebase.xml {
    rewrite ^(.*)$ /index.php?route=feed/google_base break;
  }

  location / {
    # This try_files directive is used to enable SEO-friendly URLs for OpenCart
    try_files $uri $uri/ @opencart;
  }

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


搜索
«   2026年3月   »
1
2345678
9101112131415
16171819202122
23242526272829
3031
最近发表
标签列表
© Copyright www.laomiba.cn.Some Rights Reserved.
Powered by laoyuming