В настоящее время каждая недопустимая страница составляет 500 (Internal Server Error), потому что я, вероятно, испортил конфигурацию своего сервера.
Я решил закрыть мой сайт некоторое время назад и создал простую одностраничную страницу с благодарностью. Однако старые ссылки и внешние сайты по-прежнему пытаются получить доступ к другим частям сайта, которые больше не существуют.
Как принудительно перенаправить всю домашнюю страницу (любой недопустимый URL) на главную страницу?
Я пробовал со следующим блоком, но это не сработало:
location / {
try_files $uri $uri/ $document_uri/index.html;
}
Моя текущая конфигурация (я даже не обслуживаю файлы PHP прямо сейчас, т.е. домашняя страница - это простой html):
server {
server_name www.example.com example.com;
access_log /srv/www/example.com/logs/access.log;
error_log /srv/www/example.com/logs/error.log;
root /srv/www/example.com/public_html;
index index.php index.html;
location / {
try_files $uri $uri/ $document_uri/index.html;
}
# Disable favicon.ico logging
location = /favicon.ico {
log_not_found off;
access_log off;
}
# Allow robots and disable logging
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
# Enable permalink structures
if (!-e $request_filename) {
rewrite . /index.php last;
}
# Handle php requests
location ~ \.php$ {
try_files $uri = 404;
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_send_timeout 900;
fastcgi_read_timeout 900;
fastcgi_connect_timeout 900;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
# Disable static content logging and set cache time to max
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
access_log off;
log_not_found off;
expires max;
}
# Deny access to htaccess and htpasswd files
location ~ /\.ht {
deny all;
}
# Deny access to hidden files (beginning with a period)
location ~ /\. {
access_log off; log_not_found off; deny all;
}
}