<?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>Htaccess Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/htaccess/</link>
	<description>Code Solution</description>
	<lastBuildDate>Tue, 18 Jan 2022 06:48:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>Htaccess Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/htaccess/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Access File Extension Htaccess Deny Example</title>
		<link>https://codeplaners.com/access-file-extension-htaccess-deny-example/</link>
					<comments>https://codeplaners.com/access-file-extension-htaccess-deny-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 18 Jan 2022 06:48:23 +0000</pubDate>
				<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Htaccess]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1384</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you access file extension htaccess deny example. This article will give you simple example of access file extension htaccess deny example. you will access file extension htaccess deny example. In this article, we will implement a access file extension htaccess deny example. So let’s follow few step to &#8230; <a href="https://codeplaners.com/access-file-extension-htaccess-deny-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Access File Extension Htaccess Deny Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/access-file-extension-htaccess-deny-example/">Access File Extension Htaccess Deny Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you access file extension htaccess deny example. This article will give you simple example of access file extension htaccess deny example. you will access file extension htaccess deny example. In this article, we will implement a access file extension htaccess deny example. </p>
<p>So let’s follow few step to create example of access file extension htaccess deny example.</p>
<h3 class="step_code">Example 1</h3>
<pre class="brush: php; title: ; notranslate">
RewriteEngine On
  
RewriteRule ^uploads/.*\.(php|rb|py)$ - &#x5B;F,L,NC]
</pre>
<p>you can not access following files:</p>
<pre class="brush: php; title: ; notranslate">
/uploads/test.php
/uploads/demo.php
/uploads/test2.php
</pre>
<h3 class="step_code">Example 2</h3>
<p>you can not access php, rb, py files inside that folder:</p>
<pre class="brush: php; title: ; notranslate">
&lt;FilesMatch &quot;\.(?:inc|php|py|rb)$&quot;&gt;
Order allow,deny
Deny from all
&lt;/FilesMatch&gt;
</pre>
<p>you can not access following files:</p>
<pre class="brush: php; title: ; notranslate">
/test.php
/uploads/demo.php
/uploads/test2.php
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/access-file-extension-htaccess-deny-example/">Access File Extension Htaccess Deny Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/access-file-extension-htaccess-deny-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to remove index.php in codeigniter using htaccess</title>
		<link>https://codeplaners.com/how-to-remove-index-php-in-codeigniter-using-htaccess/</link>
					<comments>https://codeplaners.com/how-to-remove-index-php-in-codeigniter-using-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 06 Jun 2021 23:39:36 +0000</pubDate>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[Htaccess]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=974</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you how to remove index.php in codeigniter using htaccess. This article will give you simple example of how to remove index.php in codeigniter using htaccess. you will learn how to remove index.php in codeigniter using htaccess. In this article, I will tell you how to remove index.php from url &#8230; <a href="https://codeplaners.com/how-to-remove-index-php-in-codeigniter-using-htaccess/" class="more-link">Continue reading<span class="screen-reader-text"> "How to remove index.php in codeigniter using htaccess"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-remove-index-php-in-codeigniter-using-htaccess/">How to remove index.php in codeigniter using htaccess</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you how to remove index.php in codeigniter using htaccess. This article will give you simple example of how to remove index.php in codeigniter using htaccess. you will learn how to remove index.php in codeigniter using htaccess. </p>
<p>In this article, I will tell you how to remove index.php from url in codeigniter using htaccess file. I will tell you how to remove index.php from url using htaccess in codeigniter. </p>
<p>So let&#8217;s follow few step to create example of how to remove index.php in codeigniter using htaccess.</p>
<p><strong>.htaccess</strong></p>
<pre class="brush: php; title: ; notranslate">
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 &#x5B;L]
</pre>
<p>update your htaccess file and check it.</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-remove-index-php-in-codeigniter-using-htaccess/">How to remove index.php in codeigniter using htaccess</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-remove-index-php-in-codeigniter-using-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
