<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SEO Consultant for Small Business &#187; Search Results  &#187;  htaccess</title>
	<atom:link href="http://www.thomsonchemmanoor.com/search/htaccess/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://www.thomsonchemmanoor.com</link>
	<description>SEO consultant with 9 years experience in Search Engine Optimization</description>
	<lastBuildDate>Mon, 19 Dec 2011 13:00:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>16 Useful .htaccess Tricks and Hacks For Web Developers</title>
		<link>http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html</link>
		<comments>http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html#comments</comments>
		<pubDate>Wed, 10 Dec 2008 21:11:57 +0000</pubDate>
		<dc:creator>Thomson</dc:creator>
				<category><![CDATA[Website Security]]></category>

		<guid isPermaLink="false">http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html</guid>
		<description><![CDATA[The .htaccess files (Hypertext Access file) is a very powerful configuration tool on Apache web server. The Apache web server has a number of configuration options that are available to the server administrator. The .htaccess is a simple ASCII text file placed in your website root directory. You can create and edit an .htaccess file [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-vertical"><script type="text/javascript">
			<!-- 
				tweetmeme_url = "http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html";
				tweetmeme_source = "socializeWP";
				tweetmeme_style = "normal";
				
			//-->
			</script>
                        <script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div><div class="socialize-in-button socialize-in-button-vertical"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html&amp;layout=box_count&amp;show_faces=false&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-vertical"><g:plusone size="tall" href="http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html"></g:plusone></div></div><p>The .htaccess files (Hypertext Access file) is a very powerful configuration tool on Apache web server. The Apache web server has a number of configuration options that are available to the server administrator. The .htaccess is a simple ASCII text file placed in your website root directory. You can create and edit an .htaccess file using a text editor like notepad.</p>
<p>Here in this blog post I have come up with useful 16 tips and hacks to configure your web server.<br />
As a configuration file .htaccess if a very powerful and a slight syntax error can result in a severe malfunction of your server. So to avoid that always try to keep a backup copies of all your files from the server before working with the .htaccess file.</p>
<p><strong>1. Creating a custom error page</strong> with .htaccess on a linux apache is a very simple task. Using you a text editor like notepad you create an .htaccess files. Custom error pages give your website an professional look and catch those visitors who reach your website following a back link.<br />
<br style="background-color: #ffe599" /><span style="background-color: #ffffff; color: #0000ff">ErrorDocument 401 /error/401.php</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">ErrorDocument 403 /error/403.php</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">ErrorDocument 404 /error/404.php</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">ErrorDocument 500 /error/500.php</span><br style="background-color: #ffffff" /><br />
<strong>2. How to set the timezone on your server</strong><br />
<br style="background-color: #ffe599" /><span style="background-color: #ffffff; color: #0000ff">SetEnv TZ America/Houston</span></p>
<p><strong>3. Block IPs Using htaccess</strong><br />
Sometime you need to block certain IPs from accessing your entire site or directory. Its pretty simple task. All you have to do is inside the .htaccess file is put the following code.</p>
<p><span style="background-color: #ffffff; color: #0000ff">allow from all</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">deny from 145.186.14.122</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">deny from 124.15</span></p>
<p>If you use the whole IP or a part of the IP to block and add the new ones in a new line.<br />
When someone trying to access your site from the banned ip they will get a 403 error access forbidden message.</p>
<p><strong>4. SEO Friendly 301 permanent redirects </strong>for bad/old links and moved links<strong><br />
</strong><br />
<span style="background-color: #ffffff; color: #0000ff">Redirect 301 /d/file.html http://www.htaccesselite.com/r/file.html</span></p>
<p><strong>5. Set the Email Address for the Server Administrator </strong>- Using this code you can specifying the default email address for the server administrator.<br />
<br style="background-color: #ffffff" /><span style="background-color: #ffffff; color: #0000ff">ServerSignature EMail</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnv SERVER_ADMIN default@domain.com</span><br style="background-color: #ffffff" /><br />
<strong>6. Hotlinking protection with .htaccess</strong> is very important because anyone can hot link to your images and eat up all your bandwith of your server. The following code will help you to prevent that.</p>
<p><span style="color: #0000ff">Options +FollowSymlinks</span><br style="color: #0000ff" /><span style="color: #0000ff"># Protect Hotlinking</span><br style="color: #0000ff" /><span style="color: #0000ff">RewriteEngine On</span><br style="color: #0000ff" /><span style="color: #0000ff">RewriteCond %{HTTP_REFERER} !^$</span><br style="color: #0000ff" /><span style="color: #0000ff">RewriteCond %{HTTP_REFERER} !^http://(www.)?domainname.com/ [nc]</span><br style="color: #0000ff" /><span style="color: #0000ff">RewriteRule .*.(gif|jpg|png)$ http://domainname.com/img/hotlink_f_o.png [nc]</span></p>
<p><strong>7. Block all requests from user agent</strong> &#8211; by creating a perfect .htaccess ban list, you can block all of unwanted user agents that will keep your server load down. Also Check out this interesting thread on webmaster world about theÂ  228 user agents ban list.</p>
<p><span style="background-color: #ffffff; color: #0000ff">## .htaccess Code :: BEGIN</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">## Block Bad Bots by user-Agent </span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnvIfNoCase user-Agent ^FrontPage [NC,OR]</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnvIfNoCase user-Agent ^Java.* [NC,OR]</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnvIfNoCase user-Agent ^Microsoft.URL [NC,OR]</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnvIfNoCase user-Agent ^MSFrontPage [NC,OR]</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnvIfNoCase user-Agent ^Offline.Explorer [NC,OR]</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnvIfNoCase user-Agent ^[Ww]eb[Bb]andit [NC,OR]</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">SetEnvIfNoCase user-Agent ^Zeus [NC]</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">&lt;Limit GET POST HEAD&gt;</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">Order Allow,Deny</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">Allow from all</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">Deny from env=bad_bot</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">&lt;/Limit&gt;</span><br style="background-color: #ffffff; color: #0000ff" /><span style="background-color: #ffffff; color: #0000ff">## .htaccess Code :: END </span><br />
<strong><br />
8. Redirect everyone to different site except few IP</strong> -If you want to redirect all the visitors to a different IP. Also give access to certainÂ  few IPs. You can use the code below</p>
<p><span style="color: #0000ff">ErrorDocument 403 http://www.youdomain.com</span><br style="color: #0000ff" /><span style="color: #0000ff">Order deny,allow</span><br style="color: #0000ff" /><span style="color: #0000ff">Deny from all</span><br style="color: #0000ff" /><span style="color: #0000ff">Allow from 124.34.48.165</span><br style="color: #0000ff" /><span style="color: #0000ff">Allow from 102.54.68.123</span></p>
<p><strong>9. Don&#8217;t want to display download request</strong> &#8211; Usually when you try to download something from a web server you get a request asking whether you want to save the file or open it.<br />
To avoid that you can use the below code on your .htaccess file.</p>
<p><span style="color: #0000ff">AddType application/octet-stream .pdf</span><br style="color: #0000ff" /><span style="color: #0000ff">AddType application/octet-stream .zip</span><br style="color: #0000ff" /><span style="color: #0000ff">AddType application/octet-stream .mov</span></p>
<p><strong>10. Change the file type</strong> &#8211; Make any file be a certain kind of file type Makes image.jpg, index.html, default.cgi all act as php</p>
<p><span style="color: #0000ff">&lt;Files test&gt;</span><br style="color: #0000ff" /><span style="color: #0000ff">ForceType application/x-httpd-php</span><br style="color: #0000ff" /><span style="color: #0000ff">SetHandler application/x-httpd-php</span><br style="color: #0000ff" /><span style="color: #0000ff">&lt;/Files&gt; </span></p>
<p><strong>11. Block access to your .htaccess file</strong> &#8211; By adding he following code to your htaccess file will prevent attempts to access your htaccess file. This extra layer of security protects your htaccess file by displaying a 403 error message on the browser.</p>
<p><span style="color: #0000ff"># secure htaccess file</span><br style="color: #0000ff" /><span style="color: #0000ff">&lt;Files .htaccess&gt;</span><br style="color: #0000ff" /><span style="color: #0000ff">Â order allow,deny</span><br style="color: #0000ff" /><span style="color: #0000ff">Â deny from all</span><br style="color: #0000ff" /><span style="color: #0000ff">&lt;/Files&gt;</span><br style="color: #0000ff" /><br />
<strong>12. Protect access to certain specific file on your server </strong>- this can be done by adding the below mentioned code. For example you want to block with the file name default.jpg This will prevent the viewing of this file.</p>
<p><span style="color: #0000ff"># prevent access of a certain file</span><br style="color: #0000ff" /><span style="color: #0000ff">&lt;files default.jpg&gt;</span><br style="color: #0000ff" /><span style="color: #0000ff">Â order allow,deny</span><br style="color: #0000ff" /><span style="color: #0000ff">Â deny from all</span><br style="color: #0000ff" /><span style="color: #0000ff">&lt;/files&gt;</span><br style="color: #0000ff" /><br />
<strong>13. Prevent access to unauthorized browsing</strong> &#8211; Protecting specific directory browsing can be done by intructing the server to serve a Forbidden and Authorization required message while anyone requests to view that particular directory. Usually if you site doesn&#8217;t have a default index page any files within that directory is accessible to the visitors. To avoid that use the following code in the .htaccess file.</p>
<p><span style="color: #0000ff"># disable directory browsing</span><br style="color: #0000ff" /><span style="color: #0000ff">Options All -Indexes</span><br style="color: #0000ff" /><strong><br />
14. Setting the default page</strong> &#8211; You can set the default page of a directory to any page you like. For example in this code the default page is set as about.html instead of index.html</p>
<p><span style="color: #0000ff"># serve alternate default index page</span><br style="color: #0000ff" /><span style="color: #0000ff">DirectoryIndex about.html</span><br />
<strong><br />
15. Password protect your directories and files </strong>- You can create authentication for certain files and directories from being access. The code has examples of both password protection for a single file and password protection for a entire directory.</p>
<p><span style="color: #0000ff"># to protect a file</span><br style="color: #0000ff" /><span style="color: #0000ff">&lt;Files secure.php&gt;</span><br style="color: #0000ff" /><span style="color: #0000ff">AuthType Basic</span><br style="color: #0000ff" /><span style="color: #0000ff">AuthName &#8220;Prompt&#8221;</span><br style="color: #0000ff" /><span style="color: #0000ff">AuthUserFile /home/path/.htpasswd</span><br style="color: #0000ff" /><span style="color: #0000ff">Require valid-user</span><br style="color: #0000ff" /><span style="color: #0000ff">&lt;/Files&gt;</span></p>
<p><span style="color: #0000ff"># password-protect a directory</span><br style="color: #0000ff" /><span style="color: #0000ff">resides</span><br style="color: #0000ff" /><span style="color: #0000ff">AuthType basic</span><br style="color: #0000ff" /><span style="color: #0000ff">AuthName &#8220;This directory is protected&#8221;</span><br style="color: #0000ff" /><span style="color: #0000ff">AuthUserFile /home/path/.htpasswd</span><br style="color: #0000ff" /><span style="color: #0000ff">AuthGroupFile /dev/null</span><br style="color: #0000ff" /><span style="color: #0000ff">Require valid-user</span><br />
<strong><br />
16. Redirect an old domain to a new domain</strong> &#8211; Using htaccess file you can redirect a old domain name to a new domain by adding the following code into the htaccess file. Basically what it does is it will remap the old domain to the new one.</p>
<p><span style="color: #0000ff"># redirect from old domain to new domain</span><br style="color: #0000ff" /><span style="color: #0000ff">RewriteEngine On</span><br style="color: #0000ff" /><span style="color: #0000ff">RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]</span></p>
<p>As htaccess files are very powerful, even a slightest syntax error can cause sever malfunction of your server. So it is crucial to take the backup copies of everything before you try the hacks and tricks on your hypertext access files. Post your thoughts with a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html/feed</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
		<item>
		<title>16 Web Based Handy Web Designer Tools</title>
		<link>http://www.thomsonchemmanoor.com/16-web-based-handy-web-designer-tools.html</link>
		<comments>http://www.thomsonchemmanoor.com/16-web-based-handy-web-designer-tools.html#comments</comments>
		<pubDate>Sun, 05 Oct 2008 04:40:59 +0000</pubDate>
		<dc:creator>Thomson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Graphic Design]]></category>

		<guid isPermaLink="false">http://www.thomsonchemmanoor.com/16-web-based-handy-web-designer-tools.html</guid>
		<description><![CDATA[while designing and developing a website a web designer need to several tools to maximizing the effectiveness of the website. There are a wide range of different tools which is been presented here. Each of these tools is so important for a web designer. Web Page Analyzer Tool â€“ This tool can be used to [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-vertical"><script type="text/javascript">
			<!-- 
				tweetmeme_url = "http://www.thomsonchemmanoor.com/16-web-based-handy-web-designer-tools.html";
				tweetmeme_source = "socializeWP";
				tweetmeme_style = "normal";
				
			//-->
			</script>
                        <script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div><div class="socialize-in-button socialize-in-button-vertical"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.thomsonchemmanoor.com/16-web-based-handy-web-designer-tools.html&amp;layout=box_count&amp;show_faces=false&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-vertical"><g:plusone size="tall" href="http://www.thomsonchemmanoor.com/16-web-based-handy-web-designer-tools.html"></g:plusone></div></div><p>while designing and developing a website a web designer need to several tools to maximizing the effectiveness of the website. There are a wide range of different tools which is been presented here. Each of these tools is so important for a web designer.</p>
<ol>
<li> <a href="http://www.websiteoptimization.com/services/analyze/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-1.jpg" title="Web Page Analyzer Tool" alt="Web Page Analyzer Tool" width="317" border="0" height="170" /></a><br />
<strong><a href="http://www.websiteoptimization.com/services/analyze/">Web Page Analyzer Tool â€“</a></strong> This tool can be used to test the loading time of your web page. It gives a detailed report on how many objects and size of the objects on the page. These tools have several rating for each object like Green ratings is for good, Yellow for caution and Red for warnings.</li>
<li><a href="http://jigsaw.w3.org/css-validator/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-2.jpg" title="W3C CSS Validation Services" alt="W3C CSS Validation Services" width="314" border="0" height="169" /></a><a href="http://jigsaw.w3.org/css-validator/"><br />
<strong>W3C CSS Validation Services â€“</strong> </a>This W3C CSS validation Service is a web based tool helps web designers to check Cascading Style Sheets(CSS) are validated. The CSS can be validated here by three ways one is typing the URL, second is by uploading the file and finally by inputting the direct CSS code in the input box.</li>
<li><a href="http://browsershots.org/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-3.jpg" title="Browser compatibility testing tool" alt="Browser compatibility testing tool" width="319" border="0" height="171" /></a><br />
<strong><a href="http://browsershots.org/">Browser compatibility testing tool â€“</a></strong> By using Browsershots you can test your web designed pages in different browsers. As we all know the importance of checking the web pages with different multiple browsers. Browser compatibility testing is a critical element in the web development practice.</li>
<li><a href="http://www.gliffy.com/free-wireframe-software/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-4.jpg" title="Website Wireframe Tool" alt="Website Wireframe Tool" width="319" border="0" height="171" /></a><a href="http://www.gliffy.com/free-wireframe-software/"><br />
<strong>Website Wireframe Tool â€“</strong></a> Wireframes are a basic visual guide for any web page layout design. Wireframe also allows maintaining design consistency throughout the site. Wireframes are very important part in the initial stage of the design process. Gliffy is a free web-based diagram editor. Gliffy free wireframe software makes it easy to create website wireframes and to share web mockups with anyone.</li>
<li><a href="http://www.pagetutor.com/colorpicker/index.html"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-5.jpg" title="Web color picker" alt="Web color picker" width="319" border="0" height="171" /></a><br />
<strong><a href="http://www.pagetutor.com/colorpicker/index.html">Web color picker -</a></strong> This color picker will help you fine tune the hex color codes for your web page. These color picker tools are great for exploring colors and color schemes for your web design project.</li>
<li><a href="http://www.ranks.nl/tools/screen_resolutions.html"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-6.jpg" title="Screen Resolutions Checker" alt="Screen Resolutions Checker" width="326" border="0" height="175" /></a><br />
<strong><a href="http://www.ranks.nl/tools/screen_resolutions.html">Screen Resolutions Checker â€“</a></strong> Quickly and easily test any Website in various Screen Resolutions! This tool allows you to check any web page in different screen resolutions. As web visitors uses different screen resolutions web designers need to check their web page design in different screen resolutions and make sure it looks in all of them.</li>
<li><a href="http://www.lipsum.com/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-7.jpg" title="Dummy Text Generator" alt="Dummy Text Generator" width="311" border="0" height="166" /></a><a href="http://www.lipsum.com/"><br />
<strong>Dummy Text Generator â€“</strong></a> A dummy text generator will come handy to any web designers because when they wait for the content. Web designers can use dummy text generators to fill up that space.</li>
<li><a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-8.jpg" title="CSS Menu Generator" alt="CSS Menu Generator" width="317" border="0" height="171" /></a><br />
<strong><a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml">CSS Menu Generator &#8211; </a></strong>will generate both the CSS and the HTML code required to produce a text-based yet appealing set of navigation buttons. Menu generator makes it easy to create custom CSS menus without having to know all the complicated HTML and CSS</li>
<li><a href="http://www.iwebtool.com/broken_link_checker"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-9.jpg" title="Broken Link checker" alt="Broken Link checker" width="299" border="0" height="161" /></a><a href="http://www.iwebtool.com/broken_link_checker"><br />
<strong>Broken Link checker â€“</strong> </a>Use this tool to check for Broken Links on a website. Broken links are links that lead nowhere; Clicking on the link will show an error page.</li>
<li><a href="http://whatsmy.browsersize.com/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-10.jpg" title="Browser size checker" alt="Browser size checker" width="298" border="0" height="160" /></a><a href="http://whatsmy.browsersize.com/"><br />
<strong>Browser size checker -</strong></a> A nifty online tool for setting your browser size while doingWeb design.</li>
<li><a href="http://www.mcanerin.com/EN/search-engine/robots-txt.asp"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-11.jpg" title="Robot Control Code Generation Tool" alt="Robot Control Code Generation Tool" width="298" border="0" height="160" /></a><a href="http://www.mcanerin.com/EN/search-engine/robots-txt.asp"><br />
<strong>Robot Control Code Generation Tool â€“</strong></a> The only reason you might need to use a robots.txt file is if you want to prevent someone else from using this search engine to index your site</li>
<li><a href="http://www.webconfs.com/http-header-check.php"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-12.jpg" title="Http header checker" alt="Http header checker" width="298" border="0" height="160" /></a><br />
<strong><a href="http://www.webconfs.com/http-header-check.php">Http header checker -</a></strong> Check your server to make sure the proper HTTP Status Codes (200, 301, 302, 304, 307, 404, 410) are being returned in the server headers.</li>
<li><a href="http://www.iwebtool.com/htaccess_url_rewrite"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-13.jpg" title="URL rewriting tool" alt="URL rewriting tool " width="299" border="0" height="161" /></a><br />
<strong><a href="http://www.iwebtool.com/htaccess_url_rewrite">URL rewriting tool -</a></strong> This tool helps you convert dynamic URLs into static looking html URLs.</li>
<li><a href="http://www.clockwatchers.com/htaccess_tool.html"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-14.jpg" title="htaccess tool" alt="htaccess tool" width="306" border="0" height="164" /></a><br />
<strong><a href="http://www.clockwatchers.com/htaccess_tool.html">htaccess tool â€“ </a></strong>These tools will create .htaccess and .htpasswd files for you, without having to build these manually.</li>
<li><a href="http://www.roundedcornr.com/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-15.jpg" title="Rounded Corner and Gradient Generator" alt="Rounded Corner and Gradient Generator" width="305" border="0" height="164" /></a><br />
<strong><a href="http://www.roundedcornr.com/">Rounded Corner and Gradient Generator -</a></strong> This generates a basic box with rounded corners. It will create four image files and the necessary HTML and CSS code for you to put rounded corners around your content.</li>
<li><a href="http://stripgenerator.com/"><img src="http://www.thomsonchemmanoor.com/images-for-blog/web-tool-16.jpg" title="Strip Generator" alt="Strip Generator" width="300" border="0" height="161" /></a><br />
<strong><a href="http://stripgenerator.com/">Strip Generator</a> </strong>lets you make your own comic strips. Users can even create their own Strip Blog, which combines the art of creating comic strips with blogging.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.thomsonchemmanoor.com/16-web-based-handy-web-designer-tools.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10 reasons why webmasters should use .htaccess files</title>
		<link>http://www.thomsonchemmanoor.com/10-reasons-why-webmasters-should-use-htaccess-files.html</link>
		<comments>http://www.thomsonchemmanoor.com/10-reasons-why-webmasters-should-use-htaccess-files.html#comments</comments>
		<pubDate>Tue, 24 Jun 2008 01:40:03 +0000</pubDate>
		<dc:creator>Thomson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[Online SEO Tools]]></category>
		<category><![CDATA[Web Graphic Design]]></category>

		<guid isPermaLink="false">http://www.thomsonchemmanoor.com/10-reasons-why-webmasters-should-use-htaccess-files.html</guid>
		<description><![CDATA[I am not sure all of you might have heard of htaccess files. Also may be thinking what can be done having an htaccess file on your site. The people who would have heard would have used to implement custom error pages and for protecting directories which needs a password access. But htaccess file can [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-vertical"><script type="text/javascript">
			<!-- 
				tweetmeme_url = "http://www.thomsonchemmanoor.com/10-reasons-why-webmasters-should-use-htaccess-files.html";
				tweetmeme_source = "socializeWP";
				tweetmeme_style = "normal";
				
			//-->
			</script>
                        <script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div><div class="socialize-in-button socialize-in-button-vertical"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.thomsonchemmanoor.com/10-reasons-why-webmasters-should-use-htaccess-files.html&amp;layout=box_count&amp;show_faces=false&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-vertical"><g:plusone size="tall" href="http://www.thomsonchemmanoor.com/10-reasons-why-webmasters-should-use-htaccess-files.html"></g:plusone></div></div><p><span style="font-size: 10pt; font-family: Verdana">I am not sure all of you might have heard of htaccess files. Also may be thinking what can be done having an htaccess file on your site. The people who would have heard would have used to implement custom error pages and for protecting directories which needs a password access. But htaccess file can do more than that. Below I have mentioned few quality tips on how to use .htaccess files for webmasters to their advantage.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">1. For Password Protection &#8211; If you have a specific area or folder that needs to be protected and only certain people should have access to it. Then .htaccess is your answer. There are several client side based scripts to protect your password which is not secured but using server side htaccess you are safe.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">2. Block users with their IP &#8211; If you think you need to deny access to certain IP address or blocks. You can also allow and deny by domain name rather than the IP address.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">3. Block referrals sites &#8211; If you think certain sites is misusing your content or images and hot linking without a legitimate one then you can block them through htaccess. An apache mod rewrite is required to be installed on to the server first most servers have them.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">4. 301 redirects â€“ 301 redirect is the most effective and Search Engine Friendly method for redirecting a web page. It&#8217;s not a difficult task to implement it will preserve the ranking and credibility of that particular page.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">5. 404 error pages creation &#8211; Everyone get frustrated when they encounter a broken link page. But you can help the users by creating a custom 404 error page and tell them that this pages doesn&#8217;t exist which will make the reader to think that you care them.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">6. Prevents from access htaccess &#8211; htaccess files allow you to prevent accessing certain part of your website. htaccess also can protect certain directories as password protect folders and give access to only specific users.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">7. Create user friendly URLs- With htaccess and an apache module called mod_rewrite you can setup URLS in which ever way you want. Often ecommerce and a website on content management software generate URL with many special characters which are not search engine friendly. But with .htaccess file you can mod_rewrite them.</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">8. Enabling server side includes- One of the trickiest aspects of a maintaining a website is constant update on a certain part of the design which occurs on every page. But with Enabling server side includes instead of copying and pasting the new code on all the pages you can use a include file which will modify and will replace all the pages. You should also be able to do that using .htaccess</p>
<p></span><span style="font-size: 10pt; font-family: Verdana">9. Set time zone of your server- You can set server time zone to local time zone using htaccess which will give the correct time being return in your web form.</p>
<p></span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Verdana">10. Block bots and Cache of the web pages- Another advantage of htaccess is for blocking bots and caching of your web page by the search engines. This can be prevented too by htaccess.</p>
<p></span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Verdana">htaccess is one of the smallest things that we all overlook. but I see many things I have listed here are very invaluable tool for a webmaster.<o:p></o:p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomsonchemmanoor.com/10-reasons-why-webmasters-should-use-htaccess-files.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

