Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter npaitken

    (@npaitken)

    Just solved the stuck homepage problem. It was a problem caused by me playing around with .htaccess file and not returning settings to normal.

    My blog is located in /blog/ folder so mod_rewrite code in .htaccess was

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    but should in fact be

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]
    </IfModule>
Viewing 1 replies (of 1 total)