내 사이트의 다음 URL이 동일해야합니다.
/foo/bar
/foo/bar/
/foo/bar/index.html
또한 두 번째 두 양식이 첫 번째 양식으로 HTTP 301 리디렉션을 발행하고 싶습니다. 나는 단지 정적 페이지를 제공하고 있으며 세 번째 양식에 따라 정렬됩니다. 즉, 사용자가 요청 /foo/bar
하면에 파일을 받아야합니다 /usr/share/.../foo/bar/index.html
.
내 nginx.conf
현재는 다음을 포함합니다 :
rewrite ^(.+)/$ $1 permanent;
index index.html;
try_files $uri $uri/index.html =404;
이것은에 대한 요청에 대해 작동 /foo/bar/index.html
하지만 Safari에서 요청 /foo/bar
하거나 /foo/bar/
Safari가“리디렉션이 너무 많이 발생했습니다”라고 말하면 무한 리다이렉트 루프 또는 이와 유사한 것으로 가정합니다. 설명 된 방식으로 nginx가 URL을 파일에 매핑하도록하려면 어떻게해야합니까?
편집 : 내 전체 구성
여기 nginx.conf
내 도메인 이름이 "example.com"으로 바뀐 내 전체 가 있습니다.
user www-data;
worker_processes 1;
pid /run/nginx.pid;
events {
worker_connections 768;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
server_names_hash_bucket_size 64;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss application/atom+xml text/javascript image/svg+xml;
server {
server_name www.example.com;
listen 80;
return 301 $scheme://example.com$request_uri;
}
server {
server_name example.com 123.45.67.89 localhost;
listen 80 default_server;
# Redirect /foobar/ to /foobar
rewrite ^(.+)/$ $1 permanent;
root /usr/share/nginx/www/example.com;
index index.html;
try_files $uri $uri/index.html =404;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}
이 파일들이 실제로 파일 시스템에 존재합니까?
—
Michael Hampton
@MichaelHampton 네. 에 대한 요청
—
bdesham
/foo/bar/index.html
은 파일을 /usr/share/nginx/www/foo/bar/index.html
설정하거나 설정 한 파일을 반환해야 합니다. 웹 사이트의 모든 경로는 파일 시스템 경로와 직접 일치합니다.
@bdesham 나는 재생할 수 없습니다. 여기 내가 당신의 구성 paste.ubuntu.com/7501697로 얻는 것
—
Alexey Ten
@AlexeyTen 당신이 뭔가 다른 것을 얻는 것이 이상합니다. 조사해 주셔서 감사합니다. 나는 나를 위해 일한 구성을 게시했습니다.
—
bdesham