मैं अपनी साइट पर निम्नलिखित 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
, लेकिन जब मैं अनुरोध करता हूं /foo/bar
या /foo/bar/
सफारी मुझे बताता है कि "बहुत अधिक रीडायरेक्ट हुआ है" - मुझे लगता है कि एक अनंत पुनर्निर्देशित लूप या ऐसा कुछ है। जिस तरह से मैंने वर्णित किया है, मैं URLs को फ़ाइलों में मैप करने के लिए nginx कैसे प्राप्त कर सकता हूं?
संपादित करें: मेरा पूर्ण कॉन्फ़िगरेशन
यहाँ 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
या फिर इसे सेट करना चाहिए। वेबसाइट पर सभी पथ सीधे फाइल सिस्टम पथ के अनुरूप हैं।