Showing posts with label Wordpress. Show all posts
Showing posts with label Wordpress. Show all posts

Wednesday, 9 September 2015

4 Reasons To Avoid Free Web-Hosting

If you want to start your own blog, then you will need a domain name with hosting space. I know right now there's so many free platforms are available (e.g. Blogger, Wordpress), however it's comes with some limitations. But if you go for self-hosted site, then it's a professional approach for you. So my suggestion to you is if you are a new blogger and you want to become a professional blogger then select WordPress platform, because at this present time WordPress is one of the best blogging platform comparison to others.

The actual disadvantage of using free web-hosting services is that you will never become an owner of their free services. Everyone knows the free web-hosting platforms are cheap and you don't need to spend a single cent on it. But you know guys, all the free web hosting companies are using their "freemium" model to promote their "premium" service.

Below you can know why the free web-hosting service is not good for anyone.

4 Reasons To Avoid Free Web-Hosting Services

They can stop their services at any time

As far as I know, every free service provider, company or website has their own privacy policy and they can change their policy at any time. The worst part is that they can also stop serving their services at any time. And I want to let you know guys, If they try to stop providing their free services, then at that time you will need to work hard to manage your blog. But don't worry, according to their rules and policies they will let you know before stopping their service.

Yahoo Geocities had stopped its service in April 2009. At that time, he had said that no new registrations will be accepted, but we will keep the old domain functional.

You can't sell your free hosted blog

As you guys already know that on the web any free service is not your own property, and as far as I know the free web-hosting service is also not our own property.

For example, read the blogspot terms and conditions. This indicates clearly that, you cannot sell, share, and transfer your blogspot blog to another person. You can sell your blog secretly. But if they know about it, then your blog will be closed and will also be deleted from the search engine index.

On ShoutMeHindi - “No Resale of the Service. Unless expressly authorized in writing by Google, you agree not to reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purposes (a) any portion of the Service, (b) use of the Service, or (c) access to the Service.

There is no safety

Free hosting service providers cannot spend much money on security issues, because they are using a very simple rule about it. "No Money= No Better Security"

At the present time security is very important for every type of blog because it's not just a blog, it's our life. (Day+Night+Hours+Minutes+Seconds)

Do not believe in the promises of non-guaranteed free domain

Never get into the trap of Catchy advertisements, because no one can do anything for free without any hope of getting something in return from you. So before selecting any types of platform think about it and always say "All is well".

Source - http://shoutmehindi.in/free-webhosting-avoid-reasons-hindi/
Also Read - Disadvantage and techniques of black hat seo
Also Read - How to verify your adsense account from aadhar card

That's it! I hope you like this article! Stay tuned for more cool and dynamic articles! Thanks for reading @Prince.

Sunday, 9 August 2015

Easy Way To Setup 301 Redirect

How to properly implement a 301 redirect - To Implement a 301 Redirect is the best way for everyone who want to redirect an old website to a new address. (A Brief Definition Of 301 Redirect: A 301 redirect is a command used to tell the search engines that a page has permanently moved, and that you want them to index the new page and drop the old one from their index). You can use this 301 redirect in separate situations. 

Condition are listed below?

If you want to modulate a URL structure change.
If you want to redirect an old website to a new address.
If you want to set up several domains pointing to one website.
If you want to apply only one version of your website (www. /Without - www)

So today I'm going to show you how you can easily set up a 301 redirect. Yes' it's very simple and you can do it with the help of some codes. Follow the below instruction to setup a 301 redirect.

How To Redirect A Single PHP Page?

If you want to redirect a single page to a new address simply enter the below code inside the index.php file.
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.newdomain.com/page.html");
exit();
?>

For PHP Canonical Redirect?

The Canonical 301 Redirect will add (or remove) the www. prefixes to all the pages inside your domain. With the help of this below code your visitors will redirects http://askwithloud.com version to http://www.askwithloud.com.
<?php
if (substr($_SERVER['HTTP_HOST'],0,3) != 'www') {
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.'.$_SERVER['HTTP_HOST']
.$_SERVER['REQUEST_URI']);
}
?>

How To Redirect Apache .htaccess Singe Page?

If you want to redirect apache .htaccess Singe Page then, you will need to create a file (named .htaccess) (It's not supporting on Windows-based hosting) and place it on the root directory of your website, then just add the below code to the file.
Redirect 301 /old/oldpage.htm /new/http://www.domain.com/newpage.htm

For Apache .htaccess Canonical Redirect?

Follow the same steps you did before in PHP Canonical redirect. however add the below code.
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

That's it! I hope you like this tutorial! Stay tuned for more cool tips and tricks! Thanks for reading @Prince