Magento с nginx try_files не работает
У меня есть сервер с приложением электронной коммерции Magento, и он работает с использованием Nginx. Недавно я установил блог Wordpress в корневом каталоге документа следующим образом: http://example.com/blog Когда я имею дело с постоянной ссылкой на wordpress, я обнаруживаю, что директива try_files внутри моего конфигурационного файла не работает должным образом. Вот мой конфигурационный файл:
server {
listen www.xxx.com:80;
server_name www.xxx.com;
root /home/abc/www;
access_log /home/abc/log/access.log;
error_log /home/abc/log/error.log;
index index.php index.html index.htm;
if ($request_uri ~ " ") {
return 444;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 7d;
}
location /blog/ {
try_files $uri $uri/ /blog/index.php?$args;
}
location ~* \.(html|htm)$ {
expires 1d;
}
location / {
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 @handler { ## Magento uses a common front handler
rewrite / /index.php;
}
if (!-e $request_filename) { rewrite / /index.php last; }
location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler
rewrite ^(.*.php)/ $1 last;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_intercept_errors on;
include fastcgi_params;
}
}
Я пытался удалить `if (!-E $request_filename) { rewrite / /index.php last; } но после этого все мои ссылки на веб-интерфейсе перешли на 404.
Другое дело, что у меня есть промежуточный сайт на том же сервере, и он прекрасно работает после удаления этой строки кода. Я очень смущен и не знаю, что здесь не так. Может ли кто-нибудь помочь? Я опубликую более подробную информацию, если это необходимо. Просто дай мне знать. Большое спасибо.