<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Working with SSL in Codeigniter</title>
	<atom:link href="http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/</link>
	<description>Warmed by the Drift</description>
	<lastBuildDate>Wed, 25 Jan 2012 04:03:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Rudy</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-315</link>
		<dc:creator>Rudy</dc:creator>
		<pubDate>Wed, 25 Jan 2012 04:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-315</guid>
		<description>Nigel , thanks for your solution. 
i write this solution in my book.</description>
		<content:encoded><![CDATA[<p>Nigel , thanks for your solution.<br />
i write this solution in my book.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-314</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Fri, 02 Dec 2011 14:44:04 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-314</guid>
		<description>Thank you so much.  This is very elegant and is going to save me a ton of time.</description>
		<content:encoded><![CDATA[<p>Thank you so much.  This is very elegant and is going to save me a ton of time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thaninrat</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-312</link>
		<dc:creator>Thaninrat</dc:creator>
		<pubDate>Mon, 28 Nov 2011 18:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-312</guid>
		<description>Thank you. This is great solution i search for.</description>
		<content:encoded><![CDATA[<p>Thank you. This is great solution i search for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyler</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-311</link>
		<dc:creator>Tyler</dc:creator>
		<pubDate>Wed, 02 Nov 2011 17:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-311</guid>
		<description>TEN POINTS</description>
		<content:encoded><![CDATA[<p>TEN POINTS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wegra</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-309</link>
		<dc:creator>Wegra</dc:creator>
		<pubDate>Fri, 30 Sep 2011 09:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-309</guid>
		<description>And.. if you wanna remove the &#039;index.php&#039; part automatically from requested URI, the &#039;.htaccess&#039; file is still required.

I put the following contents in the xx/www/.htaccess file.
--------------
RewriteEngine on
RewriteCond $1 !^(index\.php&#124;resources&#124;robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
--------------</description>
		<content:encoded><![CDATA[<p>And.. if you wanna remove the &#8216;index.php&#8217; part automatically from requested URI, the &#8216;.htaccess&#8217; file is still required.</p>
<p>I put the following contents in the xx/www/.htaccess file.<br />
&#8212;&#8212;&#8212;&#8212;&#8211;<br />
RewriteEngine on<br />
RewriteCond $1 !^(index\.php|resources|robots\.txt)<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ index.php/$1 [L,QSA]<br />
&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wegra</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-308</link>
		<dc:creator>Wegra</dc:creator>
		<pubDate>Fri, 30 Sep 2011 09:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-308</guid>
		<description>Nice job!!

Two things you should mention are
1. remove .htaccess files from your document directory hierarchy. Or use carefully. They&#039;ll make conflicts in certain conditions.
2. set &#039;AllowOverride&#039; to &#039;All&#039; in both the normal(http) and ssl configurations.

They&#039;re worth mentioning at least for newbies like me. :)</description>
		<content:encoded><![CDATA[<p>Nice job!!</p>
<p>Two things you should mention are<br />
1. remove .htaccess files from your document directory hierarchy. Or use carefully. They&#8217;ll make conflicts in certain conditions.<br />
2. set &#8216;AllowOverride&#8217; to &#8216;All&#8217; in both the normal(http) and ssl configurations.</p>
<p>They&#8217;re worth mentioning at least for newbies like me. <img src='http://nigel.mcbryde.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Stevenson</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-307</link>
		<dc:creator>Ian Stevenson</dc:creator>
		<pubDate>Wed, 15 Jun 2011 18:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-307</guid>
		<description>Thank you Nigel. This is a problem I&#039;ve been toying with for a while and finally sat down to solve it. This solution is the quickest, easiest and most elegant I have seen yet - I can&#039;t see a downside to it.</description>
		<content:encoded><![CDATA[<p>Thank you Nigel. This is a problem I&#8217;ve been toying with for a while and finally sat down to solve it. This solution is the quickest, easiest and most elegant I have seen yet &#8211; I can&#8217;t see a downside to it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph R. B. Taylor</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-306</link>
		<dc:creator>Joseph R. B. Taylor</dc:creator>
		<pubDate>Mon, 06 Jun 2011 20:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-306</guid>
		<description>Nigel, nice job on this. A very elegant solution and it saved my butt today!</description>
		<content:encoded><![CDATA[<p>Nigel, nice job on this. A very elegant solution and it saved my butt today!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-305</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 24 May 2011 00:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-305</guid>
		<description>Awesome solution.  Been looking for an elegant one for a couple hours now.  Sexy sexy.</description>
		<content:encoded><![CDATA[<p>Awesome solution.  Been looking for an elegant one for a couple hours now.  Sexy sexy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Heath</title>
		<link>http://nigel.mcbryde.com.au/2009/03/working-with-ssl-in-codeigniter/comment-page-1/#comment-303</link>
		<dc:creator>Heath</dc:creator>
		<pubDate>Wed, 16 Mar 2011 23:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://nigel.mcbryde.com.au/?p=239#comment-303</guid>
		<description>WooHoo. Nice solution. I have been doing the Mod Rewrite up until now, but have just switched over to this. Awesome!!</description>
		<content:encoded><![CDATA[<p>WooHoo. Nice solution. I have been doing the Mod Rewrite up until now, but have just switched over to this. Awesome!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

