• Resolved mavenier

    (@mavenier)


    Hello,
    I need to modify the tree structure of my website, and my blog, in order to integrate my blog into the root of my website. Currently all the pages of my blog are stored in a blog directory. Is it possible to remove the pages from my blog and integrate them into the root of my site? In order to improve SEO?

    However, I will need to redirect more than 400 pages. My question is whether it’s better to keep the current tree structure, i.e. all the pages of my blog in a folder called blog.

    Either I output all the pages of my blog at the same level as the pages of my website or at the root of the site?

    If I keep the blog folder in my tree structure, will it be as good for SEO between the website pages and the blog?

    Sincerely,
    Michel

    • This topic was modified 2 years, 5 months ago by mavenier.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author iClyde

    (@iclyde)

    Hi @mavenier

    /blog/ should not affect your SEO experience.

    In any case if you wish to move /blog/ path to / root you can do that via FTP or SSH.

    Once you do that, apply this rules in your .htaccess, it should resolve your issues and will be fine both for SEO and user eye:

    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteBase /
    
        # Redirect /blog/ to root
        RewriteRule ^blog/(.*)$ /$1 [L,R=301]
    </IfModule>
Viewing 1 replies (of 1 total)

The topic ‘Need information arborescence’ is closed to new replies.