Results 1 to 6 of 6
  1. #1
    Senior Member
    Join Date
    Dec 2015
    Location
    India
    Posts
    129

    How to solve canonicalization issue or what is htacess file?

    How to solve canonicalization issue or what is htacess file?

  2. #2
    We use Canonicalization url to tell the search engine spider that which is the right page for caching. And the .htacess file is use to redirect the page or website to the new location.

  3. #3
    Registered User
    Join Date
    Nov 2015
    Posts
    124
    .htacess file is used to solve the canonicalization issue of a website. It may happen that the home page of the site may take several urls like

    1. www.abc[dot]com (with www)
    2. www.abc[dot]com/index.html (Index page)
    3. abc.com (without www)

    The search engines might treat these URL as different and may divide the link juice gained by having various backlinks made with any of these 3 URLs. The link juice gets divided between these three URLs equally. .htacess file is created to have a single URL of the home page so that the link juice is passed onto single URL.

  4. #4
    Registered User
    Join Date
    Feb 2016
    Location
    Bangalore
    Posts
    696
    The best and most effective way to resolve the canonical issue is with a permanent 301 redirect. This can be implemented in a number of ways Depending on what server your website is hosted on will determine the method which you use to implement a redirect.

    .htaccess is a configuration file for use on web servers running the Apache Web Server software.

  5. #5
    Senior Member
    Join Date
    Dec 2016
    Location
    Kolkata
    Posts
    116
    Nice Information keep it up.

  6. #6
    Senior Member
    Join Date
    Mar 2015
    Posts
    136
    First of all, you need to know about your site have which types of server. Mostly these types of server use a htaccess file:
    1- Linux, 2- Apache
    If your hosting account uses one of these types of the server then you can copy below code into your htaccess file.

    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^ example.com [NC]
    RewriteRule ^(.*)$ http://www.example .com/$1 [L,R=301]
    RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
    RewriteRule . http://www.example.com%1/%2 [R=301,L]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(([^/]+/)*)index\.html\ HTTP/
    RewriteRule index\.html$ http://www.example.com/%1 [R=301,L]\

    Note: In red highlights, you need to replace example.com with your domain name and in green highlights, you need to replace with your .html or .php index page. Keep in mind do not write just index, write extension too.

    After the copy, this code with your htaccess old code, Save it and upload to your root folder where your site has index page. Hope it will solve.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

  Find Web Hosting      
  Shared Web Hosting UNIX & Linux Web Hosting Windows Web Hosting Adult Web Hosting
  ASP ASP.NET Web Hosting Reseller Web Hosting VPS Web Hosting Managed Web Hosting
  Cloud Web Hosting Dedicated Server E-commerce Web Hosting Cheap Web Hosting


Premium Partners:


Visit forums.thewebhostbiz.com: to discuss the web hosting business, buy and sell websites and domain names, and discuss current web hosting tools and software.