Inblog SEO Setup Wizard Guide from A to Z

Let's figure out a complete step-by-step guide on setting up the SEO wizard.
inblog Team's avatar
Mar 11, 2024
Inblog SEO Setup Wizard Guide from A to Z

Welcome to the SEO Setup Wizard, your ultimate guide to optimizing your business blog for better SERP rankings. With easy-to-follow steps, you can enhance your blog's search engine visibility and reach your target audience more effectively.

The following steps include providing basic blog information for Google Search and adding your blog to the Google Search Console, as well as submitting the sitemap for faster indexing.

Plus, you can now easily check the indexing status and track your post's SERP positions for each post on the dashboard.

Let's get started!

Basic blog representation

In this step, we ask you to add some information about your blog. That will allow us to explain your blog to Google Search.

Blog name and logo

Enter your blog name and upload a logo.

Blog representation

Language

Choose your default language to add a lang attribute to help Google detect the language of a page and improve SEO accessibility.

language selection

Here’s an example of a correctly implemented langtag:

<html lang="en-us">

The attribute uses a two-digit code to declare the default language, often followed by a two-digit code to declare the region of the language.

Don’t make assumptions about language codes. You might assume that 

<html lang=”en-uk” > 

refers to English as spoken in the United Kingdom — but the correct attribute is:

<html lang=”en-gb"> 

The full list of acceptable langcodes can be found in the ISO 639 language code.


👉 If you want to know more about lang attribute, check out our documentation.

Domain Connection

In this step, we ask you to connect your blog to your main domain.

You can embed your blog as a subdomain (e.g., blog.example.com) or a sub-folder (e.g., example.com/blog) to enhance site architecture and brand presence, benefiting SEO.

Connecting as a Subdomain

Enter the URL address you want your sub-domain to point to and click the Activate Custom Domain button to receive instructions.

👉 If you need any help? Contact us.

activate custom domain as a sub-domainactivate custom domain as a sub-domain

Connecting as a Sub-directory (or, a Sub-folder)

Enter the URL address you want your sub-directory to point to and click the Activate Custom Domain button to receive instructions.

Important:

  • Sub-directory support is available for the Next.js framework.
    (Static Exports are not supported)

  • Vercel and AWS Amplify support sub-directories for web hosting.

  • For no-code platforms, Framer and Webflow, a reverse proxy configuration via Cloudflare is needed.

👉 If you need any help? Contact us.

activate custom domain as a sub-directoryactivate custom domain as a sub-directory

If you need any assistance, please send us a help request! We provide all support, including technical support, through video meetings.

👉 If you need any help? Contact us.

Site Verification

In this step, by verifying your blog ownership and registering it in Google Search Console, you can expect to enhance the indexing speed of your blog and posts. This procedure is also necessary for the subsequent step of submitting the sitemap.

Plus, by integrating with Google Search Console, you can create an insightful dashboard with Search Console data.

Please follow the steps below:

Add your blog to the Google Search Console

Important: If your blog is already set up on Google Search Console, you can skip to the "Allow Inblog to access your Search Console" step.

  1. Head over to Google Search Console and click on the "Start now" button.

    Ultimate Blog for Business
  1. Select the URL Prefix property type and add your website URL. The URL should be the domain after connecting a custom domain, such as 'https://blog.yoursite.com'or 'https://www.yoursite.com/blog'. Please ensure that 'https://' is included.

    Ultimate Blog for Business
  1. Click 'Continue'.

Verify your blog ownership

  1. You'll see different options toprove to Google that you own this website. Inblog use the adding HTML meta tag method to verify your ownership. Please click on the 'HTML tag' area.

how to verify blog ownership
  1. Copy the provided meta tag. It will be unique and tied to a specific user. 

    how to verify blog ownership
  1. Paste the verification code into the input field labeled"Step 3: Paste the verification code"within the SEO setup wizard's Site Verification step.

    how to verify blog ownership

    or paste it into the <head> section of the Inblog custom code. Find it under "Blog settings > Code injection > End of the <head> tag" section.

    how to verify blog ownership
  1. Click "Verify" in Search Console.

Allow Inblog to access your Search Console

  1. In the "Step 5: Allow Inblog to access yourSearch Console" within the SEO setup wizard's Site Verification step, or in the "Blog settings > Integration > Search Console" Section, click on the 'Continue with Google' button which will take you through to Google’s authentication flow to get the necessary permissions.

    Allow Inblog to access your Search Console​
  1. Choose your Google account to continue with the authentication.

    Allow Inblog to access your Search Console​
  1. Click "Allow" button to grant Inblog a permission to view your Search Console website data.

    Allow Inblog to access your Search Console​Allow Inblog to access your Search Console​

Submitting a Sitemap to Google Search Console

Important: Before you can submit your sitemap to search engines, you need to verify your ownership of your site's domain with them. Learn how to verify your domain. Learn how to verify your domain.

To submit your sitemap,

  1. Go to Google Search Console.

  2. Select your site from the drop-down.

  3. Select Sitemaps on the navigation sidebar.

  4. Enter the URL slug of the sitemap you want to submit under Add a new sitemap. For example, to submit the sitemap for your entire site, enter sitemap.xml

    add a new sitemap
  5. Click Submit.

  6. Once Google is done processing your sitemap, you’ll see a message like this:

    sitemap submitted

👉 If you want to know more about sitemaps, check out our Guide to Sitemaps.

Robots.txt: Default Configuration, and How to Edit

By default, Inblog generates a robots.txt file with the following contents:

default robots.txt file

These directives allow all search engines to crawl your blog. In addition, we add a link to your sitemap, so search engines, and can find it and crawl your blog and posts more efficiently.

How to Edit a Robots.txt file in Inblog?

You can modify the robots.txt file in Inblog as follows. You can find the robots.txt editor under "Blog settings > Robots.txt" section.

location of Robots.txt editor

The method of editing the Robots.txt file differs slightly depending on the method of connection (subdomain or subdirectory) when embedding a blog onto your website using a custom domain.

Connected as a Subdomain

When connecting a custom domain as a Subdomain like 'blog.example.com', Inblog provides default directives for the robots.txt file as follows:

User-agent: *
Allow: /
Sitemap: https://inblog.ai/blog/sitemap.xml

You can directly edit the file using the robots.txt editor in the blog settings.

Connected as a Sub-directory

When connecting a custom domain as a Sub-directory (or sub-folder) like 'example.com/blog', Inblog rewrites the robots.txt file from your root domain, such as 'yourdomain.com/robots.txt' to add your blog sitemap.

The modified robot file provided by Inblog is as follows:

User-agent: *
Allow: /
Sitemap: https://inblog.ai/sitemap.xml
Sitemap: https://inblog.ai/blog/sitemap.xml


To edit the robot file, follow the instructions below. This setup routes the robot file to Inblog, allowing you to manage it directly within Inblog.

  • NextJS

    • Add these rules to the rewrites function in next.config.js file as shown below. Make sure that these rules are in the top order.

      const nextConfig = {
        async rewrites() {
          return {
            beforeFiles: [
              {
                source: "/blog",
                destination: "https://inblog.ai/grayzipblog",
              },
              {
                source: "/blog/:path*",
                destination: "https://inblog.ai/grayzipblog/:path*",
              },
              {
                source: "/robots.txt",
                destination: "https://inblog.ai/grayzipblog/robots.txt",
              },
              {
                source: "/_inblog/:path*",
                destination: "https://inblog.ai/grayzipblog/_inblog/:path*",
              },
            ],
          };
        },
      };
      
      module.exports = nextConfig
  • AWS Amplify

    • Go to App Settings -> Rewrites and redirects. Add the following rules in the Open text editor. Ensure these rules are positioned at the top of the list.

      [
        {
          "source": "/blog",
          "target": "https://inblog.ai/grayzipblog",
          "status": "200",
          "condition": null
      	},
        {
          "source": "/blog/<*>",
          "target": "https://inblog.ai/grayzipblog/<*>",
          "status": "200",
          "condition": null
        },
        {
          "source": "/robots.txt",
          "target": "https://inblog.ai/grayzipblog/robots.txt",
          "status": "200",
          "condition": null
        },
        {
          "source": "/_inblog/<*>",
          "target": "https://inblog.ai/grayzipblog/_inblog/<*>",
          "status": "200",
          "condition": null
        }
      ]

👉 If you want to know more about robots.txt, check out our Guide to Robots.txt.

Share article
Join the Inblog newsletter today!
RSSPowered by inblog