<?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>CloudMB &#187; WWW</title>
	<atom:link href="http://blog.cloudmb.cz/category/it/www/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cloudmb.cz</link>
	<description>online notes</description>
	<lastBuildDate>Tue, 10 Dec 2019 13:38:03 +0000</lastBuildDate>
	<language>cs-CZ</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.33</generator>
	<item>
		<title>Removing Extensions .html .php</title>
		<link>http://blog.cloudmb.cz/2014/07/removing-extensions-html-php/</link>
		<comments>http://blog.cloudmb.cz/2014/07/removing-extensions-html-php/#comments</comments>
		<pubDate>Thu, 24 Jul 2014 16:22:19 +0000</pubDate>
		<dc:creator><![CDATA[hatex]]></dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://www.odnuly.cz/?p=583</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<h2>Removing Extensions</h2>
<p>To remove the <code>.php</code> extension from a PHP file for example <code>odnuly.cz/servis.php</code> to <code>odnuly.cz/servis</code> you have to add the following code inside the <code>.htaccess</code> file:</p>
<blockquote>
<pre><code>RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
</code></pre>
</blockquote>
<p>If you want to remove the <code>.html</code> extension from a html file for example <code>odnuly.cz/servis.html</code> to odnuly.cz/servis<code> </code>you simply have to alter the last line from the code above to match the filename:</p>
<blockquote>
<pre><code>RewriteRule ^([^\.]+)$ $1.html [NC,L]</code></pre>
</blockquote>
<p><map name='google_ad_map_583_a2db11ed00ddbb5d'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/583?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_583_a2db11ed00ddbb5d' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=583&amp;url= http%3A%2F%2Fblog.cloudmb.cz%2F2014%2F07%2Fremoving-extensions-html-php%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmb.cz/2014/07/removing-extensions-html-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
