• Hi All,

    I’ve just installed a new WP site onto a hosting account and although its working fine, I’m unable able to see the sub directories to where also in the public_html folder.

    I’ve uploaded the wp site to: domain.com/wpsite/ but I’m getting a blank screen for any other folder, ie: domain.com/sub1/, domain.com/sub2, domain.com/sub3

    I believe its an issue with the htaccess file but I can’ seem to find a resolution online.

    Can anyone offer any advice?

    Thanks!

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

    (@deeperlook)

    * UPDATE

    I had the duplicated folder structure in my /wpsite/ folder. I removed them from the /wpsite/ folder and now I receive 404 errors when i try to access /sub1/ etc.

    my .htaccess folder in the public_html folder contains the following yet it still doesn’t work.

    php_value ignore_user_abort 1

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_URI} ^/sub1/(.*)$ [OR]
    RewriteCond %{REQUEST_URI} ^/sub2/(.*)$ [OR]
    RewriteRule ^.*$ – [L]
    </IfModule>

    # 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

    Any Ideas?

Viewing 1 replies (of 1 total)
  • The topic ‘Blank / White screen in separate sub directory after new install’ is closed to new replies.