#php #linux #nginx
#php #linux #nginx
Вопрос:
Я получаю ошибку 404 в nginx, когда вместо этого я должен получать перенаправление. Я пришел из Apache, и это первый раз, когда я играю с Nginx. Я полагаю, это должно быть незначительной ошибкой, которую я упускаю из виду.
Это код:
server {
listen 80 default_server;
server_name localhost;
root /var/www/resizing/public_html;
index index.php index.html index.htm;
location ~ ^/(.*)/cache/(.*)$
{
try_files $uri @resize;
expires 4h;
}
location / {
expires 4h;
}
location ~ .php(.*)$ {
#fastcgi_pass 127.0.0.1:8000;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include fastcgi_params;
}
location @resize {
rewrite ^/(.*)/cache/(.*)$ /resize.php?dir=$1amp;path=$2;
include fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;
#}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root /usr/share/nginx/html;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ .php$ {
# fastcgi_split_path_info ^(. .php)(/. )$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
# try_files $uri =404;
# fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /.ht {
# deny all;
#}
}
Например, если я наберу: localhost/cache/150×200-0/originals/1.jpg Я получаю ошибку 404.
Ответ №1:
Проблема в том, что URI является /cache/150x200-0/originals/1.jpg
, и он не соответствует location ~ ^/(.*)/cache/(.*)$
в вашей конфигурации.
Правильное расположение будет выглядеть следующим образом (при условии, что компонент «dir» действительно необходим):
location ~ ^(/.*)?/cache/(.*)$ {
...
}
Хорошо обратите внимание, что та же проблема присутствует в rewrite
используемом в location @resize
.