ฉันต้องการให้ URL ต่อไปนี้ในเว็บไซต์ของฉันเท่ากัน:
/foo/bar
/foo/bar/
/foo/bar/index.html
และต่อไปฉันต้องการให้สองรูปแบบที่สองเพื่อออก HTTP 301 redirects ไปยังแบบฟอร์มแรก ฉันแค่ให้บริการหน้าคงที่และพวกเขาจะจัดเรียงตามรูปแบบที่สาม (กล่าวอีกนัยหนึ่งเมื่อผู้ใช้ร้องขอ/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
แต่เมื่อฉันร้องขอ/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;
}
}
}
/foo/bar/index.html
ควรส่งคืนไฟล์ที่/usr/share/nginx/www/foo/bar/index.html
หรือตั้งค่าไว้ เส้นทางทั้งหมดในเว็บไซต์ตรงกับเส้นทางของระบบไฟล์โดยตรง