• Resolved Brijesh Tejani

    (@brijeshtejani)


    I just did a manual install of WordPress in a subdirectory. Everything works great. But after that I followed the steps given here, or even here for that matter, and my site breaks after step 9 and step 4, respectively. Tried thrice.

    What I’m trying to accomplish is ‘Create a network with WordPress in the subdirectory.’

    3 things to notice:

    • While installing WordPress, no .htaccess file is created in the sub-directory folder. I had to then manually create one. Code below.
    • My login page and website – both get completely broken.
    • Login Screenshot and Website Screenshot

    • I can’t login to my dashboard.
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>
    # END WordPress
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Site Broken After Following Steps Here’ is closed to new replies.