• Wanted to redirect my wordpress site to the new version in wp. Tried changing index.php to
    ‘require( dirname(_FILE_) . ‘wp/wp-blog-header.php’);’

    No .htaccess file. I am not able to login via wp-admin and site not showing theme css.

    https://www.mygriefandloss.org

    Any help appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter csites2g

    (@csites2g)

    Just added .htaccess file.

    # Block the include-only files.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^wp-admin/includes/ – [F,L]
    RewriteRule !^wp-includes/ – [S=3]
    RewriteRule ^wp-includes/[^/]+\.php$ – [F,L]
    RewriteRule ^wp-includes/js/tinymce/langs/.+\.php – [F,L]
    RewriteRule ^wp-includes/theme-compat/ – [F,L]
    </IfModule>
    <files wp-config.php>
    order allow,deny
    deny from all
    </files>

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

    # END WordPress

    Thread Starter csites2g

    (@csites2g)

    Links now work except wp-admin gives me page is not redirecting properly.

    Thread Starter csites2g

    (@csites2g)

    Any help from Forum Moderator? Kmessinger? Anyone??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WordPress not redirecting properly’ is closed to new replies.