<?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>aronatic.com &#187; htaccess</title>
	<atom:link href="http://news.aronatic.com/category/htaccess/feed" rel="self" type="application/rss+xml" />
	<link>http://news.aronatic.com</link>
	<description>San Diego Web Design, Internet Marketing</description>
	<lastBuildDate>Tue, 25 May 2010 22:03:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>301 .htaccess redirect subdomain to domain</title>
		<link>http://news.aronatic.com/htaccess-redirect-subdomain/htaccess</link>
		<comments>http://news.aronatic.com/htaccess-redirect-subdomain/htaccess#comments</comments>
		<pubDate>Mon, 23 Nov 2009 22:50:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://news.aronatic.com/?p=296</guid>
		<description><![CDATA[301 .htaccess redirect subdomain to domain
RewriteCond %{HTTP_HOST} www.subdomain.example.com$ [NC]
RewriteRule (.*) http://subdomain.example.com/ [R=301,L]
]]></description>
		<wfw:commentRss>http://news.aronatic.com/htaccess-redirect-subdomain/htaccess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>htaccess redirecting everyone [block all ip address] except for your (my) own ip</title>
		<link>http://news.aronatic.com/htaccess-redirecting-everyone-except-for-your-my-own-ip/htaccess</link>
		<comments>http://news.aronatic.com/htaccess-redirecting-everyone-except-for-your-my-own-ip/htaccess#comments</comments>
		<pubDate>Wed, 20 May 2009 23:51:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://news.aronatic.com/?p=71</guid>
		<description><![CDATA[this code will redirect all ips other then the one you set to &#8220;another-page.php&#8221; via 302 redirect
the only ip allowed will be your, which is 25.35.45.55 in this case

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_HOST} !^25\.35\.45\.55
RewriteCond %{REQUEST_URI} !/main\.htm$
RewriteRule .* http://www.domain.com/old/main.htm [R=302,L]

redirect only index page and leave everything else as is:

Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REMOTE_ADDR} !^123\.45\.67\.89$
RewriteCond %{REQUEST_URI} !/index\.htm$
RewriteRule [...]]]></description>
		<wfw:commentRss>http://news.aronatic.com/htaccess-redirecting-everyone-except-for-your-my-own-ip/htaccess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
