<?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>Symfony y Desarrollo Web &#187; Apache</title>
	<atom:link href="http://www.loalf.com/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.loalf.com</link>
	<description>Otro programador de symfony con blog</description>
	<lastBuildDate>Sun, 05 Sep 2010 09:57:25 +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>Subdominios y aplicaciones en Symfony</title>
		<link>http://www.loalf.com/2009/11/subdominios-y-aplicaciones-en-symfony/</link>
		<comments>http://www.loalf.com/2009/11/subdominios-y-aplicaciones-en-symfony/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 09:25:41 +0000</pubDate>
		<dc:creator>Javi</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[subdominios]]></category>

		<guid isPermaLink="false">http://www.loalf.com/?p=148</guid>
		<description><![CDATA[¿Nunca te ha pasado que, al acceder al panel de administración de tu aplicación en symfony, ves esto
http://www.mycoolapp.com/backend.php/myurl/myparams
como algo horrible?¿No crees que esto quedaría mejor?
http://backend.mycoolapp.com/myurl/myparams
Pues bien, sí tú también piensas esto y quieres cambiarlo la solución es relativamente sencilla. Modifica el archivo .htaccess de la siguiente manera:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} backend.mycoolapp.com$ [NC]
RewriteRule ^(.*)$ backend.php [QSA,L]
&#160;
RewriteCond [...]]]></description>
		<wfw:commentRss>http://www.loalf.com/2009/11/subdominios-y-aplicaciones-en-symfony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
