Nginx - как сделать редирект c index.php на главную страницу

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Перейти к:навигация, поиск
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Nginx - как сделать редирект c index.php на главную страницу

делается через конструкцию if:

  if ($request_uri ~* "^(.*/)index\.php$") { return 301 https://$host$1; }

https или http - в зависимости от того по какому протоколу работает сайт.


тоже самое для редиректа с /index.html:

 if ($request_uri ~* "^(.*/)index\.html$") { return 301 https://$host$1; }