<?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>.htaccess Archives - Belchamber Web Tools &amp; Code</title>
	<atom:link href="https://tools.belchamber.us/tag/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>https://tools.belchamber.us/tag/htaccess/</link>
	<description>Free Web Tools, Code Snippets, Tutorials and Conversions</description>
	<lastBuildDate>Sun, 20 Sep 2015 14:46:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
<site xmlns="com-wordpress:feed-additions:1">99928718</site>	<item>
		<title>.htaccess: Password protecting single files on your website</title>
		<link>https://tools.belchamber.us/htaccess-password-protecting-single-files-on-your-website/</link>
					<comments>https://tools.belchamber.us/htaccess-password-protecting-single-files-on-your-website/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Mon, 21 Sep 2015 14:27:37 +0000</pubDate>
				<category><![CDATA[Server & .htaccess]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[.htaccess trips]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[web security]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=934</guid>

					<description><![CDATA[<p>This is very simple.  For any file you want to have its own password protection, create an .htaccess file in the folder the file resides.  Just replace &#8220;pagename.html&#8221; for the file.  Then, just go to our .htpasswd password generator and create the .htpasswd file in the format:  username:password, where username is the name required to [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/htaccess-password-protecting-single-files-on-your-website/">.htaccess: Password protecting single files on your website</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/htaccess-password-protecting-single-files-on-your-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">934</post-id>	</item>
		<item>
		<title>Isolating search engine crawlers for special limited site access and addressing surgical SEO concerns</title>
		<link>https://tools.belchamber.us/isolating-search-engine-crawlers-for-special-limited-site-access-and-addressing-surgical-seo-concerns/</link>
					<comments>https://tools.belchamber.us/isolating-search-engine-crawlers-for-special-limited-site-access-and-addressing-surgical-seo-concerns/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sun, 02 Aug 2015 15:03:29 +0000</pubDate>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[php tips]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=897</guid>

					<description><![CDATA[<p>Here&#8217;s how you can allow different search engine bot crawlers if you prefer to address them individually.  There might be some crazy reasons why which I try to explain below.  For some companies, it seems web developers often don&#8217;t dev to create new web assets, they dev to squeeze any remaining SEO juice from their [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/isolating-search-engine-crawlers-for-special-limited-site-access-and-addressing-surgical-seo-concerns/">Isolating search engine crawlers for special limited site access and addressing surgical SEO concerns</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/isolating-search-engine-crawlers-for-special-limited-site-access-and-addressing-surgical-seo-concerns/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">897</post-id>	</item>
		<item>
		<title>Password protecting different environments on your website through .htaccess</title>
		<link>https://tools.belchamber.us/password-protecting-different-environments-on-your-website-through-htaccess/</link>
					<comments>https://tools.belchamber.us/password-protecting-different-environments-on-your-website-through-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sat, 06 Jun 2015 17:49:34 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Servers & Hosts]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web security]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=834</guid>

					<description><![CDATA[<p>Apache .htaccess directives are pretty straight forward.  The &#8220;SetEnvIf&#8221; that passes different values if the conditions are met then are processed by the standard Deny/Allow directive.  Here&#8217;s a sample from Apache&#8217;s documentation: #allow a single uri through .htaccess password protection SetEnvIf Request_URI "/test_uri$" test_uri #allows everything if its on a certain host SetEnvIf HOST "^test.yoursite.com" [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/password-protecting-different-environments-on-your-website-through-htaccess/">Password protecting different environments on your website through .htaccess</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/password-protecting-different-environments-on-your-website-through-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">834</post-id>	</item>
	</channel>
</rss>
