Ответы пользователя по тегу htaccess
  • Как убрать /index.html с главной страницы?

    @BATPYIIIKOB
    PHP, JS
    Вот пример: для http в htaccess

    RewriteEngine On
    
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/
    RewriteRule ^index\.html$ http://example.com/ [R=301,L]
    
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
    RewriteRule ^index\.php$ http://example.com/ [R=301,L]


    Можно и через РНР:
    if( $_SERVER['REQUEST_URI'] == "/index.php" ) {
     header( "Location: /", TRUE, 301 );
     exit();
     }
    Ответ написан
    Комментировать