<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: .htaccess file</title>
	<atom:link href="http://blaze.haughin.com/2008/02/22/htaccess-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://blaze.haughin.com/2008/02/22/htaccess-file/</link>
	<description>The CodeIgniter CMS</description>
	<pubDate>Fri, 21 Nov 2008 13:35:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: chandan</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-916</link>
		<dc:creator>chandan</dc:creator>
		<pubDate>Sun, 12 Oct 2008 13:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-916</guid>
		<description>How to run server can any body help me?</description>
		<content:encoded><![CDATA[<p>How to run server can any body help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hugo</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-640</link>
		<dc:creator>hugo</dc:creator>
		<pubDate>Wed, 23 Jul 2008 06:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-640</guid>
		<description>I'm replace http://localhost/blaze/$1/ -&#62; http://kingf1.com/blaze/$1/ in RewriteRule</description>
		<content:encoded><![CDATA[<p>I&#8217;m replace <a href="http://localhost/blaze/1/" rel="nofollow">http://localhost/blaze/1/</a> -&gt; <a href="http://kingf1.com/blaze/1/" rel="nofollow">http://kingf1.com/blaze/1/</a> in RewriteRule</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hugo</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-639</link>
		<dc:creator>hugo</dc:creator>
		<pubDate>Wed, 23 Jul 2008 06:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-639</guid>
		<description>HI,

i'm install blaze localhost work but install server not work

Please help me.

http://www.kingf1.com/blaze/

 .htaccess

 
	RewriteEngine On
    RewriteBase /blaze
 
	# Add Trailing Slash (Force it!) - It looks cool :)
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_URI} !(.*)/$
	RewriteRule ^(.*)$ http://kingf1.com/blaze/$1/ [R=301,L]
 
	# Admin 'dashboard'
	RewriteRule ^admin$ index.php/admin [L]
	RewriteRule ^admin/$ index.php/admin/ [L]
 
	# Admin functions within Admin module and controller
	RewriteRule ^admin/(navigation&#124;users&#124;settings&#124;login&#124;logout)$ index.php/admin/$1 [L]
	RewriteRule ^admin/(navigation&#124;users&#124;settings&#124;login&#124;logout)/(.*)$ index.php/admin/$1/$2 [L]
	RewriteRule ^admin/nav_(.*)$ index.php/admin/nav_$1 [L]
 
	# All others, push to the module in question
	RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]
	RewriteRule ^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]
 
	# Any request were the file or directory doesn't exist...
	# Push to CI
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</description>
		<content:encoded><![CDATA[<p>HI,</p>
<p>i&#8217;m install blaze localhost work but install server not work</p>
<p>Please help me.</p>
<p><a href="http://www.kingf1.com/blaze/" rel="nofollow">http://www.kingf1.com/blaze/</a></p>
<p> .htaccess</p>
<p>	RewriteEngine On<br />
    RewriteBase /blaze</p>
<p>	# Add Trailing Slash (Force it!) - It looks cool <img src='http://blaze.haughin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 	RewriteCond %{REQUEST_FILENAME} !-f<br />
	RewriteCond %{REQUEST_URI} !(.*)/$<br />
	RewriteRule ^(.*)$ <a href="http://kingf1.com/blaze/1/" rel="nofollow">http://kingf1.com/blaze/1/</a> [R=301,L]</p>
<p>	# Admin &#8216;dashboard&#8217;<br />
	RewriteRule ^admin$ index.php/admin [L]<br />
	RewriteRule ^admin/$ index.php/admin/ [L]</p>
<p>	# Admin functions within Admin module and controller<br />
	RewriteRule ^admin/(navigation|users|settings|login|logout)$ index.php/admin/$1 [L]<br />
	RewriteRule ^admin/(navigation|users|settings|login|logout)/(.*)$ index.php/admin/$1/$2 [L]<br />
	RewriteRule ^admin/nav_(.*)$ index.php/admin/nav_$1 [L]</p>
<p>	# All others, push to the module in question<br />
	RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]<br />
	RewriteRule ^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]</p>
<p>	# Any request were the file or directory doesn&#8217;t exist&#8230;<br />
	# Push to CI<br />
    RewriteCond %{REQUEST_FILENAME} !-f<br />
    RewriteCond %{REQUEST_FILENAME} !-d<br />
    RewriteRule ^(.*)$ index.php/$1 [L]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: F[D]</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-135</link>
		<dc:creator>F[D]</dc:creator>
		<pubDate>Tue, 11 Mar 2008 18:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-135</guid>
		<description>Some changes in .htaccess (which included in latest release):
We have:
RewriteRule ^(.*)$ http://cms.dev/$1/ [R=301,L]

Must be:
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L]</description>
		<content:encoded><![CDATA[<p>Some changes in .htaccess (which included in latest release):<br />
We have:<br />
RewriteRule ^(.*)$ <a href="http://cms.dev/1/" rel="nofollow">http://cms.dev/1/</a> [R=301,L]</p>
<p>Must be:<br />
RewriteRule ^(.*)$ <a href="http://%" rel="nofollow">http://%</a>{HTTP_HOST}/$1/ [R=301,L]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mario</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-60</link>
		<dc:creator>mario</dc:creator>
		<pubDate>Tue, 04 Mar 2008 10:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-60</guid>
		<description>hi,

nice work, but where i have to but the htaccess file? thanks</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>nice work, but where i have to but the htaccess file? thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: burs</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-48</link>
		<dc:creator>burs</dc:creator>
		<pubDate>Wed, 27 Feb 2008 03:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-48</guid>
		<description>Hi Elliot,

Thanks for sharing this CMS can't wait for your updates. :)

By the way is there easiest way to install the CMS in local computer? I managed to install locally but have problems with .htaccess or file not found. But when i moved to live server everything works ok.

Cheers!</description>
		<content:encoded><![CDATA[<p>Hi Elliot,</p>
<p>Thanks for sharing this CMS can&#8217;t wait for your updates. <img src='http://blaze.haughin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
By the way is there easiest way to install the CMS in local computer? I managed to install locally but have problems with .htaccess or file not found. But when i moved to live server everything works ok.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BaRzO</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-47</link>
		<dc:creator>BaRzO</dc:creator>
		<pubDate>Tue, 26 Feb 2008 15:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-47</guid>
		<description>Yes i did :(
You can see it 


    RewriteEngine On
    RewriteBase /blaze/

    # Add Trailing Slash (Force it!) - It looks cool :)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_URI} !(.*)/$
    RewriteRule ^(.*)$ http://localhost/blaze/index.php/$1/ [R=301,L]

    # Admin 'dashboard'
    RewriteRule ^admin$ index.php/admin [L]
    RewriteRule ^admin/$ index.php/admin/ [L]
    
    # Admin functions within Admin module and controller
    RewriteRule ^admin/(navigation&#124;users&#124;settings&#124;login&#124;logout)$ index.php/admin/$1 [L]
    RewriteRule ^admin/(navigation&#124;users&#124;settings&#124;login&#124;logout)/(.*)$ index.php/admin/$1/$2 [L]
    RewriteRule ^admin/nav_(.*)$ index.php/admin/nav_$1 [L]
    
    # All others, push to the module in question
    RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]
    RewriteRule ^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]
    
    # Any request were the file or directory doesn't exist...
    # Push to CI
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</description>
		<content:encoded><![CDATA[<p>Yes i did <img src='http://blaze.haughin.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> You can see it </p>
<p>    RewriteEngine On<br />
    RewriteBase /blaze/</p>
<p>    # Add Trailing Slash (Force it!) - It looks cool <img src='http://blaze.haughin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />     RewriteCond %{REQUEST_FILENAME} !-f<br />
    RewriteCond %{REQUEST_URI} !(.*)/$<br />
    RewriteRule ^(.*)$ <a href="http://localhost/blaze/index.php/1/" rel="nofollow">http://localhost/blaze/index.php/1/</a> [R=301,L]</p>
<p>    # Admin &#8216;dashboard&#8217;<br />
    RewriteRule ^admin$ index.php/admin [L]<br />
    RewriteRule ^admin/$ index.php/admin/ [L]</p>
<p>    # Admin functions within Admin module and controller<br />
    RewriteRule ^admin/(navigation|users|settings|login|logout)$ index.php/admin/$1 [L]<br />
    RewriteRule ^admin/(navigation|users|settings|login|logout)/(.*)$ index.php/admin/$1/$2 [L]<br />
    RewriteRule ^admin/nav_(.*)$ index.php/admin/nav_$1 [L]</p>
<p>    # All others, push to the module in question<br />
    RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]<br />
    RewriteRule ^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]</p>
<p>    # Any request were the file or directory doesn&#8217;t exist&#8230;<br />
    # Push to CI<br />
    RewriteCond %{REQUEST_FILENAME} !-f<br />
    RewriteCond %{REQUEST_FILENAME} !-d<br />
    RewriteRule ^(.*)$ index.php/$1 [L]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phpwebdev</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-27</link>
		<dc:creator>phpwebdev</dc:creator>
		<pubDate>Sat, 23 Feb 2008 05:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-27</guid>
		<description>Thanks Elliot.

All work fine for me 

Regards 
phpwebdev</description>
		<content:encoded><![CDATA[<p>Thanks Elliot.</p>
<p>All work fine for me </p>
<p>Regards<br />
phpwebdev</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elliot</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-26</link>
		<dc:creator>Elliot</dc:creator>
		<pubDate>Fri, 22 Feb 2008 21:10:31 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-26</guid>
		<description>Hey...

Have you checked your RewriteBase?

Is anyone else having this issue?</description>
		<content:encoded><![CDATA[<p>Hey&#8230;</p>
<p>Have you checked your RewriteBase?</p>
<p>Is anyone else having this issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barzo</title>
		<link>http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-25</link>
		<dc:creator>Barzo</dc:creator>
		<pubDate>Fri, 22 Feb 2008 19:27:33 +0000</pubDate>
		<guid isPermaLink="false">http://blaze.haughin.com/2008/02/22/htaccess-file/#comment-25</guid>
		<description>i think this is sending me to 404 pages...
redirect('admin/login');</description>
		<content:encoded><![CDATA[<p>i think this is sending me to 404 pages&#8230;<br />
redirect(&#8217;admin/login&#8217;);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
