opencart nginx静态化设置
Posted firebirdweb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencart nginx静态化设置相关的知识,希望对你有一定的参考价值。
在niginx设置里添加下面代码,(lnmp的可能是 网址.conf文件添加)
# 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
最后设置好了,重启一下nginx
以上是关于opencart nginx静态化设置的主要内容,如果未能解决你的问题,请参考以下文章