<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://mirmodynamics.com/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Mirmo Dynamics - Tag - apache  - Comments</title>
  <link>http://mirmodynamics.com/</link>
  <atom:link href="http://mirmodynamics.com/feed/tag/apache/rss2/comments" rel="self" type="application/rss+xml"/>
  <description>Si tu kiffes pas reunoi, t'écoutes pas et puis c'est tout.</description>
  <language>en</language>
  <pubDate>Sun, 14 Mar 2010 19:59:01 +0100</pubDate>
  <copyright>2003-2009 &amp;copy; Geoffrey Bachelet</copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
    
    <item>
    <title>Multiple domains for one symfony project, the basics - jack</title>
    <link>http://mirmodynamics.com/post/2008/12/22/Multiple-domains-for-one-symfony-project%2C-the-basics#c8385</link>
    <guid isPermaLink="false">urn:md5:45b5d330ab66d868ac5ca55e98864721</guid>
    <pubDate>Sat, 05 Dec 2009 01:43:29 +0100</pubDate>
    <dc:creator>jack</dc:creator>
    
    <description>&lt;p&gt;Thanks for the article! I've just started doing something similar with symfony.&lt;/p&gt;


&lt;p&gt;I'm trying to get the .htaccess file trick to work.&lt;br /&gt;
The project is running on my windows testing server.&lt;br /&gt;
This is what I added&lt;/p&gt;


&lt;pre&gt; RewriteCond C:/xampp/projects/listing/web/sites/%{HTTP_HOST}%{REQUEST_FILENAME} -f
 RewriteRule (.*) /sites/%{HTTP_HOST}/$1 [L]&lt;/pre&gt;


&lt;p&gt;Mod_rewrite is enabled but no dice. Any ideas? I don't work with .htaccess a lot.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Apache and mod_rewrite to subdirectories - david</title>
    <link>http://mirmodynamics.com/post/2008/06/26/Apache-and-mod_rewrite-to-subdirectories#c8343</link>
    <guid isPermaLink="false">urn:md5:cb57db3b22c48ece64ac08c168234425</guid>
    <pubDate>Tue, 09 Jun 2009 20:37:01 +0200</pubDate>
    <dc:creator>david</dc:creator>
    
    <description>&lt;p&gt;After poking around with the exact same problem, I came to this conclusion:&lt;/p&gt;


&lt;p&gt;Put your application in say /docroot/app_app/, and create a symlink from /docroot/app_app/public/ to /docroot/app/.&lt;/p&gt;


&lt;p&gt;Voilà!&lt;/p&gt;


&lt;p&gt;Optionally, put a rewrite in /docroot/.htaccess to deny access to (or give 404 for) /docroot/app_app/.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Multiple domains for one symfony project, the basics - Paulius</title>
    <link>http://mirmodynamics.com/post/2008/12/22/Multiple-domains-for-one-symfony-project%2C-the-basics#c8249</link>
    <guid isPermaLink="false">urn:md5:c3c5cb42dc0d7a1ec2b539077ea6ccb5</guid>
    <pubDate>Sat, 03 Jan 2009 13:14:24 +0100</pubDate>
    <dc:creator>Paulius</dc:creator>
    
    <description>&lt;p&gt;Really great tutorial. Thanks! Can't wait for the other parts :)&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Multiple domains for one symfony project, the basics - Paulius</title>
    <link>http://mirmodynamics.com/post/2008/12/22/Multiple-domains-for-one-symfony-project%2C-the-basics#c8248</link>
    <guid isPermaLink="false">urn:md5:26877e02f3cdb0335d5534b920a0242a</guid>
    <pubDate>Sat, 03 Jan 2009 13:14:22 +0100</pubDate>
    <dc:creator>Paulius</dc:creator>
    
    <description>&lt;p&gt;Really great tutorial. Thanks! Can't wait for the other parts :)&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Multiple domains for one symfony project, the basics - NiKo</title>
    <link>http://mirmodynamics.com/post/2008/12/22/Multiple-domains-for-one-symfony-project%2C-the-basics#c8246</link>
    <guid isPermaLink="false">urn:md5:90ce60d8be92d462fcb5e1ba9ef503f4</guid>
    <pubDate>Mon, 29 Dec 2008 16:03:04 +0100</pubDate>
    <dc:creator>NiKo</dc:creator>
    
    <description>&lt;p&gt;&amp;gt; We get the HTTP host from the request, then try to fetch a corresponding Site from the database&lt;/p&gt;


&lt;p&gt;That means you make a database request for each HTTP one ; I'd rather handle the domain names in a (cached) configuration file, especially for performances scaling purpose (it's now well known that symfony doesn't scale, does it?) :D&lt;/p&gt;


&lt;p&gt;(BTW, nice theme ;-))&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Apache and mod_rewrite to subdirectories - Ben</title>
    <link>http://mirmodynamics.com/post/2008/06/26/Apache-and-mod_rewrite-to-subdirectories#c7950</link>
    <guid isPermaLink="false">urn:md5:75a89f2176b35b237f70ed32d52b800a</guid>
    <pubDate>Thu, 26 Jun 2008 22:09:51 +0200</pubDate>
    <dc:creator>Ben</dc:creator>
    
    <description>&lt;p&gt;It's also possible with something like that :&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d [OR]&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} =/document_root/&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
RewriteRule ^(.*)$ public/index.php/$1 [L]&lt;/p&gt;



&lt;p&gt;A RewriteCond with :&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} =%{DOCUMENT_ROOT}&lt;br /&gt;
Would be nice but doesn't work this way :/&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Apache and mod_rewrite to subdirectories - naneau</title>
    <link>http://mirmodynamics.com/post/2008/06/26/Apache-and-mod_rewrite-to-subdirectories#c7949</link>
    <guid isPermaLink="false">urn:md5:149ebf9c22bc60be9ecafcb57457b338</guid>
    <pubDate>Thu, 26 Jun 2008 19:25:43 +0200</pubDate>
    <dc:creator>naneau</dc:creator>
    
    <description>&lt;p&gt;Thank you monsieur Mo, for this solution =]&lt;/p&gt;</description>
  </item>
      
</channel>
</rss>