Я скачал magento с 3 магазинами и пытался установить его на localhost.
PHP-FPM
/app
/downloader
/includes
...
/store1/index.php
/store2/index.php
Внутри моего store1/index.php
я кладу $mageRunCode = 'my_store_code'
Когда я открываю URL http://mysite.local.dev/store1/
все открывается правильно, но все ссылки не содержат index.php, без него все URL не открываются.
Возвращает 404:
Открытие хорошо:
Не могли бы вы сказать мне, как заставить URL переписать, чтобы добавить «index.php» к моим URL, или посоветуйте другое более ясное решение.
заранее спасибо
server {
listen 80;
server_name local.dev *.local.dev;
root /var/www/local.dev/www/$subdomain;
set $subdomain "";
if ($host ~* ^([a-z0-9-\.]+)\.local.dev$) {
set $subdomain $1;
}
if ($host ~* ^www.local.dev$) {
set $subdomain "";
}
location / {
index index.html index.php; ## Allow a static html file to be shown first
try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler
expires 30d; ## Assume all files are cachable
}
## These locations would be hidden by .htaccess normally
location ^~ /app/ { deny all; }
location ^~ /includes/ { deny all; }
location ^~ /lib/ { deny all; }
location ^~ /media/downloadable/ { deny all; }
location ^~ /pkginfo/ { deny all; }
location ^~ /report/config.xml { deny all; }
location ^~ /var/ { deny all; }
location /var/export/ { ## Allow admins only to view export folder
auth_basic "Restricted"; ## Message shown in login window
auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword
autoindex on;
}
location /. { ## Disable .htaccess and other hidden files
return 404;
}
location /api {
rewrite ^/api/rest /api.php?type=rest last;
}
location @handler { ## Magento uses a common front handler
rewrite / /index.php;
}
location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler
rewrite ^(.*.php)/ $1 last;
}
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 unix:/var/run/php5-fpm.sock;
fastcgi_read_timeout 600;
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
}
}
Если я вас четко понимаю — вот обновленный конфиг:
server {
listen 80;
server_name local.dev *.local.dev;
root /var/www/local.dev/www/$subdomain;
set $subdomain "";
set $magento_run_code "";
if ($host ~* ^([a-z0-9-\.]+)\.local.dev$) {
set $subdomain $1;
set $magento_run_code $1;
}
if ($host ~* ^www.local.dev$) {
set $subdomain "";
set $magento_run_code "";
}
location / {
index index.html index.php; ## Allow a static html file to be shown first
try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler
expires 30d; ## Assume all files are cachable
}
## These locations would be hidden by .htaccess normally
location ^~ /app/ { deny all; }
location ^~ /includes/ { deny all; }
location ^~ /lib/ { deny all; }
location ^~ /media/downloadable/ { deny all; }
location ^~ /pkginfo/ { deny all; }
location ^~ /report/config.xml { deny all; }
location ^~ /var/ { deny all; }
location /var/export/ { ## Allow admins only to view export folder
auth_basic "Restricted"; ## Message shown in login window
auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword
autoindex on;
}
location /. { ## Disable .htaccess and other hidden files
return 404;
}
location /api {
rewrite ^/api/rest /api.php?type=rest last;
}
location @handler { ## Magento uses a common front handler
rewrite / /index.php;
}
location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler
rewrite ^(.*.php)/ $1 last;
}
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 unix:/var/run/php5-fpm.sock;
fastcgi_read_timeout 600;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param MAGE_RUN_CODE $magento_run_code; ## Store code is defined in administration > Configuration > Manage Stores
fastcgi_param MAGE_RUN_TYPE store;
include fastcgi_params; ## See /etc/nginx/fastcgi_params
}
}
В моей таблице core_store у меня есть следующее (имена заменены):
default - sitename
default_store1 - store1
default_store2 - store2
Небезопасные URL-адреса:
http://sitename.local.dev/
http://sitename.local.dev/store1/
http://sitename.local.dev/store2/
когда я пытаюсь открыть sitename.local.dev его пытается открыть с $ mage_run_code = sitename. Это потому, что я получаю 404. Я думаю, что ожидаемое значение должно быть дефолт.
Каким должен быть URL для store1? sitename.local.dev/store1?
upd.1
Я понял твою идею.
Когда мы имели
if ($host ~* ^([a-z0-9-\.]+)\.local.dev$) {
set $subdomain $1;
set $magento_run_code $1;
}
magento начал выполнение с $ 1, что равняется значению в 3-м домене lvl. В моем случае http://sitename.local.dev — это Название сайта.
Я изменил это на
if ($host ~* ^([a-z0-9-\.]+)\.local.dev$) {
set $subdomain $1;
set $magento_run_code default;
}
теперь это работает хорошо для первого магазина.
Давайте применим ваше решение для магазина1
каталог: {magento_root} / store1 / *
mage_run_code: default_store1
URL: http://store1.local.dev или же http://sitename.local.dev/store1/ ??????
Конфигурация nginx: насколько я вижу, это зависит от URL. какой URL и какой конфиг я должен использовать?
Если вы хотите запустить Magento в 3 разных магазинах, почему бы вам не использовать настройки по умолчанию?
Значение по умолчанию, вы устанавливаете некоторые переменные в вашей конфигурации nginx, в зависимости от вашего хоста, в вашем случае вы можете использовать что-то вроде $ subdomain:
set $magento_run_code ""; #default value
if ($host ~* ^([a-z0-9-\.]+)\.local.dev$) {
set $subdomain $1;
set $magento_run_code $1;
}
if ($host ~* ^www.local.dev$) {
set $subdomain "";
set $magento_run_code "";
}
Тогда в локации вы должны установить:
fastcgi_param MAGE_RUN_CODE $magento_run_code;
Значения должны быть определены вашим администратором (Система> Управление хранилищами), иначе Magento не сможет загрузить это хранилище.
Также использование index.php может быть настроено администратором в Системе> Конфигурация> ОБЩАЯ ИНТЕРНЕТ> Оптимизация поисковых систем
Для получения дополнительной информации о загруженном коде магазина, проверьте эти строки из index.php:
$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';
/* Run store or run website */
$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';
Других решений пока нет …