Forum Replies Created

Viewing 1 replies (of 1 total)
  • @Vodien.com Hosting Sir/ Mam, thank you very much.

    Your basic .htaccess script is what I’m looking for after I cannot access my website for 4 months!

    I even didn’t realize the culprit is .httaccess :

    ## BEGIN WordPress<<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    ## END WordPress

    Then I changed to this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    AND IT’S WORKS LIKE A CHARM!!

    Note : I never ever touch .htaccess before! It was hidden by CPanel.

Viewing 1 replies (of 1 total)