Oye, he estado tratando de redirigir todas las páginas eliminadas a la página de inicio, pero algunas de las páginas no se están redirigiendo como https://nitmeghalaya.in/nitm_web/fp/faculty_profile.php?fid=077 & https://nitmeghalaya.in/nitm_web/Tsubmenu.php?Tsubtab=21
Intenté redirigir a través de Nginx usando lo siguiente
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
error_page 404 https://nitmeghalaya.in/
try_files $uri $uri/ =404;
}
¿Pueden por favor ayudarme?
.