我一直在浏览这么多文章,但没有任何帮助!
我在Redhat上用Nginx安装了一个vanilla magento实例。基本存储正在按预期工作,但是当我尝试运行使用子目录“/ privatesales”配置的单独网站时。
我的nginx / conf.d / sitename.conf包含:
server {
listen 192.168.01; ##changed for security
listen 80;
listen 443 ssl;
ssl_certificate /etc/nginx/certs/server.crt;
ssl_certificate_key /etc/nginx/certs/server.key;
ssl_session_timeout 7m;
## Specify your SSL options here
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
access_log /var/log/nginx/vanillamagento.local-access.log;
error_log /var/log/nginx/vanillamagento.local-error.log;
server_name vanilla.domain.com;
root /var/www/vanillamagento/magento;
include conf/vanillamagento_rewrites.conf;
include conf/vanillamagento_security.conf;
# PHP handler
location ~ \.php {
## Catch 404s that try_files miss
if (!-e $request_filename) { rewrite / /index.php last; }
## Store code is defined in administration > Configuration > Manage Stores
## fastcgi_param MAGE_RUN_CODE default;
## fastcgi_param MAGE_RUN_TYPE store;
# By default, only handle fcgi without caching
include conf/magento_fcgi.conf;
}
# 404s are handled by front controller
location @magefc {
rewrite / /index.php;
}
# Last path match hands to magento or sets global cache-control
location / {
## Maintenance page overrides front controller
index index.html index.php;
try_files $uri $uri/ @magefc;
expires 24h;
}
}
我尝试了以下方法来实现此功能:
1 - 在index.php中添加开关功能
$host = explode(':', $_SERVER['HTTP_HOST']);
switch ($host[0]) {
case 'vanilla.domain.com/privatesales':
$store = 'private';
$type = 'website';
break;
default:
$store = 'base';
$type = 'store';
}
2 - 将以下内容添加到nginx配置(conf / vanillamagento_rewrites.conf)中,然后将/ privatesales目录符号链接到webroot
location ~* \.php$ {
if (!-e $request_filename) {
rewrite / /index.php last;
}
expires off;
set $runcode default;
set $runtype store;
if ( $request_uri ~* ^/privatesales) {
set $runcode private;
set $runtype website;
}
fastcgi_pass 127.0.0.1:9000;
#fastcgi_param HTTPS $fastcgi_https;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param MAGE_RUN_CODE $runcode;
fastcgi_param MAGE_RUN_TYPE $runtype;
include fastcgi_params;
}
没有太多运气,并且已经尝试解决这个问题2天:P。谢谢!
答案 0 :(得分:2)
终于让它运转了!切换后你必须修改URL!将以下内容添加到index.php:
$host = explode("/",$_SERVER['REQUEST_URI']);
//print_r($host); die();
switch ($host[1]) {
case 'privatesales':
$_SERVER['REQUEST_URI']=str_replace("/privatesales","",$_SERVER['REQUEST_URI']);
$mageRunCode = "privatesales";
$mageRunType = "store";
//$store = 'privatesales';
//$type = 'website';
break;
default:
$mageRunCode = 'default';
$mageRunType = 'store';
break;
}
Mage::run($mageRunCode, $mageRunType);