在 Nginx 服务器上使用 Magento 运行多商店设置。我正在查看访问日志,可以清楚地看到正在发生的事情。与许多 PHP Web 应用程序一样,它在 URL 中使用 index.php,我将其设置为从可见 URL 中“隐藏”它以保持干净。
shoes.com/正在返回shoes.com/index.php shoes.com/运动鞋正在返回shoes.com/sneakers/index.php
但是如果我尝试进一步研究,我发现 Nginx 不包括子目录的 index.php,因为它是根目录的。注意:Magento 基本上需要修改子目录中存在的多商店的 index.php。
结帐示例:
shoes.com/checkout/cart/返回shoes.com/index.php/checkout/cart/
而在多商店目录中:
shoes.com/sneakers/checkout/cart/正在返回shoes.com/sneakers/checkout/cart/什么时候应该返回shoes.com/sneakers/index.php/checkout/cart/
我正在尝试弄清楚如何让它也为这个子目录应用 index.php 规则。我的 Nginx 配置位于 3 个单独的文件中;这是重写文件:
rewrite_log on;
location / {
index index.php index.html;
try_files $uri $uri/ @handler;
}
location @handler {
rewrite / /index.php;
}
## force www in the URL
if ($host !~* ^www\.) {
#rewrite / $scheme://www.$host$request_uri permanent;
}
## Forward paths like /js/index.php/x.js to relevant handler
location ~ \.php/ {
rewrite ^(.*\.php)/ $1 last;
}
location /media/catalog/ {
expires 1y;
log_not_found off;
access_log off;
}
location /skin/ {
expires 1y;
}
location /js/ {
access_log off;
}
location ~ \.php$ { ## Execute PHP scripts
if (!-e $request_filename) { rewrite / /index.php last; } ## Catch 404s that try_files miss
expires off; ## Do not cache dynamic content
#fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
#fastcgi_param HTTPS $fastcgi_https;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_param MAGE_RUN_CODE default; ## Store code is defined in administration > Configuration > Manage Stores
#fastcgi_param MAGE_RUN_TYPE store;
include fastcgi_params; ## See /etc/nginx/fastcgi_params
答案1
这部分与 Magento 相关,另一个 nginx。首先是 Magento 部分:您需要确保已为商店视图正确设置 base_link_url。您只需要 sneakers 目录中的 index.php,以及正确的 MAGE_RUN_CODE。
至于 nginx,您告诉它将所有虚拟请求传递到根 index.php,但所有请求/sneakers
都应路由到/sneakers/index.php
:
location / {
rewrite ^/ /index.php;
}
location /sneakers {
rewrite ^/sneakers /sneakers/index.php;
}
但这不是你唯一的问题。当我不使用手机时,我会更新答案。