Shopex部分产品的Nginx伪静态
location / { index index.php index.html index.htm; if ($request_uri ~ (.+?\.php)(|/.+)$) { break; } if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; } } location ~ ^/shopadmin { rewrite ^/(.*)$ /index.php/$1 last; break; }
?
?