What is .htaccess File?
.htaccess file is hidden file which can be read by search engines. If you want to use redirection in your website then you can use this file. It can be made in note pad with name .htaccess
Example: If you want to redirect your website to htp://example.com to http://www.example.com then you can use .htaccess file in your website.
.htaccess file should need to locate in the root of directory.
Format of .htaccess file
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^example.com [nc]
rewriterule ^(.*)$ http://www.example.com/$1 [r=301,nc]
.htaccess file is helpful for 301 Redirection
If you want to redirect any of your website page then you can use 301 redirection in this file
Example: If you want to redirect your page http://www.example.com/index.html to http://www.example.com then you can use by the following method
Redirect 301 /index.html http://www.example.com/
It will redirect index.html to you home page
.htaccess file is helpful for 404 Error Pages
If your website pages are not working and giving 404 error page then you can use .htaccess file by redirecting method same as that of above
Suppose your page http://www.example.com/404-error-page.html is not working then you can use 301 redirection as follows
301 Redirect /404-error-page.html http://www.example.com
It will redirect your error page to home page of your website.
Note: .htaccess file can be implement to only Linux Server not in Windows Server
Blogging Alerts, a new Technology and How to Blog providing Blogging Tips, SEO Activities, Internet Marketing, Make Money Tips, PPC, SMO & latest Technology News related to Blogger, Wordpress, Google, Yahoo, Bing, Facebook, Twitter and all types of Web Based & Window Based Applications. Learn new concepts of Professional Blogging, Search Engine Optimization, Programming & Technology
Subscribe to:
Post Comments (Atom)
Popular Alerts
- How to Integrate Forum with Wordpress Blog ? What is bbPress Forum ? What are the Requirements for Adding bbPress Forum in Wordpress ?
- Google Black Navigation Bar - Can You Remove Black Navigation Bar ? Discussion About Black Bar on Google Search Engine
- How to Change Font Style and Font Size of Your Blogger Description for New Blogger Templates ?
- How to Add Author in Blogger for Guest Posting ?
- 11 Important SEO Interview Questions with Answers
- Samsung Galaxy S Duos Switch Off Automatically Again and Again? What is the Solution for it?
- Logo1w - What is logo1w in Google ? Why Google give the Logo image name as logo1w ?
- Facebook Individual Member Can Add Up To 5000 Friends and Pages in Their Profile - Can I Add More Than 5000 Friends in My Profile?
- http://www.google.com/intl/en_com/images/srpr/logo3w.png - About Google Logo3w.png, Logo2w.png and Logo1w.png
- How to make Anchor Text in Your Facebook Status for Promoting a Website ?
No comments:
Post a Comment