<?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>x83.net &#187; https</title>
	<atom:link href="http://www.x83.net/tag/https/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.x83.net</link>
	<description></description>
	<lastBuildDate>Sat, 24 Jul 2010 09:50:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to redirect my website to be opened through HTTPS?</title>
		<link>http://www.x83.net/how-to-redirect-my-website-to-be-opened-through-https/</link>
		<comments>http://www.x83.net/how-to-redirect-my-website-to-be-opened-through-https/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 01:04:34 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=345</guid>
		<description><![CDATA[In order to redirect your website to be opened through HTTPS, you should add the following rewrite rule in your .htaccess file:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule .* https://www.domain.com/%{REQUEST_URI} [R,L]

This will redirect your domain to https://www.yourdomain.com. If you wish the redirect to work without www, you should remove it from the rewrite rule:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule .* [...]]]></description>
			<content:encoded><![CDATA[<p>In order to redirect your website to be opened through HTTPS, you should add the following rewrite rule in your .htaccess file:</p>
<blockquote><p>RewriteEngine On<br />
RewriteCond %{HTTPS} !=on<br />
RewriteRule .* https://www.domain.com/%{REQUEST_URI} [R,L]</p>
</blockquote>
<p>This will redirect your domain to https://www.yourdomain.com. If you wish the redirect to work without www, you should remove it from the rewrite rule:</p>
<blockquote><p>RewriteEngine On<br />
RewriteCond %{HTTPS} !=on<br />
RewriteRule .* https://domain.com/%{REQUEST_URI} [R,L]</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/how-to-redirect-my-website-to-be-opened-through-https/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
