老域名博客

各大域名服务商使用教程

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年9月    »
123456
78910111213
14151617181920
21222324252627
282930
最近发表
标签列表
© Copyright www.laomiba.cn.Some Rights Reserved.
Powered by laoyuming