<?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>https://www olarak açılsın | WNOKTA</title>
	<atom:link href="https://wnokta.com/bb/tag/https-www-olarak-acilsin/feed/" rel="self" type="application/rss+xml" />
	<link>https://wnokta.com/bb</link>
	<description>Bilgi Bankası</description>
	<lastBuildDate>Mon, 23 Dec 2024 17:18:28 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/wnokta.com/bb/wp-content/uploads/2017/10/logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>https://www olarak açılsın | WNOKTA</title>
	<link>https://wnokta.com/bb</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">174069793</site>	<item>
		<title>Web siteniz için SSL sertifikasını zorunlu kılmak!</title>
		<link>https://wnokta.com/bb/web-siteniz-icin-ssl-sertifikasini-zorunlu-kilmak/</link>
					<comments>https://wnokta.com/bb/web-siteniz-icin-ssl-sertifikasini-zorunlu-kilmak/#comments</comments>
		
		<dc:creator><![CDATA[WNOKTA]]></dc:creator>
		<pubDate>Fri, 16 Mar 2018 12:44:09 +0000</pubDate>
				<category><![CDATA[Hazır Yazılımlar]]></category>
		<category><![CDATA[.htaccess https]]></category>
		<category><![CDATA[.htaccess https yönlendirmesi]]></category>
		<category><![CDATA[http den https e yönlendirme]]></category>
		<category><![CDATA[http:// dan https:// a yönlendirme]]></category>
		<category><![CDATA[https yönlendirme]]></category>
		<category><![CDATA[https://www açılsın]]></category>
		<category><![CDATA[https://www olarak açılsın]]></category>
		<category><![CDATA[https://www yönlendirmesi]]></category>
		<category><![CDATA[mod_rewrite https yönlendirmesi]]></category>
		<guid isPermaLink="false">https://www.wnokta.com/bb/?p=339</guid>

					<description><![CDATA[<p>Merhabalar, bu makalemizde Linux hosting platformunda barındırdığımız web sitemizin http://sitenizinadresi.com veya http://www.sitenizinadresi.com olarak değil mutlaka https://www.sitenizinadresi.com olarak açılmasını sağlayacağınız. Örneğin bir WordPress siteniz var ise bu sitenize ait bir .htaccess dosyanız vardır. Bu .htaccess dosyanız aşağıdaki içeriği sahip olup sitenizin ana klasöründe yer alır, tabi siteniz ana klasöre kurulmuş ise.<a class="moretag" href="https://wnokta.com/bb/web-siteniz-icin-ssl-sertifikasini-zorunlu-kilmak/"> Devamı</a></p>
The post <a href="https://wnokta.com/bb/web-siteniz-icin-ssl-sertifikasini-zorunlu-kilmak/">Web siteniz için SSL sertifikasını zorunlu kılmak!</a> first appeared on <a href="https://wnokta.com/bb">WNOKTA</a>.]]></description>
										<content:encoded><![CDATA[<p>Merhabalar, bu makalemizde Linux hosting platformunda barındırdığımız web sitemizin http://sitenizinadresi.com veya http://www.sitenizinadresi.com olarak değil mutlaka https://www.sitenizinadresi.com olarak açılmasını sağlayacağınız. Örneğin bir WordPress siteniz var ise bu sitenize ait bir .htaccess dosyanız vardır. Bu .htaccess dosyanız aşağıdaki içeriği sahip olup sitenizin ana klasöründe yer alır, tabi siteniz ana klasöre kurulmuş ise. Siteniz ana klasöre kurulu ise .htaccess dosyanız /domains/sitenizinadresi.com/public_html/ içerisinde yer alır. Bu dosyanın orjinal hali aşağıdaki gibidir;</p>


<pre class="wp-block-code"><code># BEGIN WordPress
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - &#91;L]
RewriteCond&nbsp;%{REQUEST_FILENAME}&nbsp;!-f
RewriteCond&nbsp;%{REQUEST_FILENAME}&nbsp;!-d
RewriteRule . /index.php &#91;L]
&lt;/IfModule&gt;
# END WordPress</code></pre>


<p>Yönlendirmemizin etkin olabilmesi için .htaccess dosyamızı aşağıdaki gibi değiştiriyoruz, sitenizinadresi.com olan kısımları kendi alan adınız ile değiştirmeyi unutmayınız.</p>


<pre class="wp-block-code"><code>RewriteEngine On
RewriteCond %{SERVER_PORT} 80 &#91;OR] 
RewriteCond %{HTTP_HOST} ^sitenizinadresi.com &#91;NC] 
RewriteRule ^(.*)$ https://www.sitenizinadresi.com/$1 &#91;R,L] 

# BEGIN WordPress
&lt;IfModule mod_rewrite.c&gt; 
RewriteEngine On 
RewriteBase / 
RewriteRule ^index\.php$ - &#91;L] 
RewriteCond&nbsp;%{REQUEST_FILENAME}&nbsp;!-f 
RewriteCond&nbsp;%{REQUEST_FILENAME}&nbsp;!-d 
RewriteRule . /index.php &#91;L] 
&lt;/IfModule&gt; 
# END WordPress</code></pre>



<p>Değişiklikleri gerçekleştirdiğinizde artık web siteniz https://www.sitenizinadresi.com/&#8230; şeklinde yönlendirilecek ve SSL olmadan açılması engellenmiş olacak. </p>The post <a href="https://wnokta.com/bb/web-siteniz-icin-ssl-sertifikasini-zorunlu-kilmak/">Web siteniz için SSL sertifikasını zorunlu kılmak!</a> first appeared on <a href="https://wnokta.com/bb">WNOKTA</a>.]]></content:encoded>
					
					<wfw:commentRss>https://wnokta.com/bb/web-siteniz-icin-ssl-sertifikasini-zorunlu-kilmak/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">339</post-id>	</item>
	</channel>
</rss>
