• OK, so I moved my blog from “/public_html/blog/” to “/public_html/” with no major issues.

    I noticed something awkward; when I click an older link for example “/blog/whatever-post” , it redirects me to “/whatever-post” normally without any problem.

    But when I visit “/blog” , it gives me a “Page not found” error.

    I don’t know if .htaccess would help figuring my problem out, but here it is:

    # 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 help?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Issues after moving blog to parent folder.’ is closed to new replies.