<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Installing symfony in a subdirectory of your documentroot</title>
	<atom:link href="http://blog.felixdv.com/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.felixdv.com/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/</link>
	<description></description>
	<lastBuildDate>Tue, 23 Aug 2011 08:41:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Paolo Niccolò Giubelli</title>
		<link>http://blog.felixdv.com/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/comment-page-1/#comment-1364</link>
		<dc:creator>Paolo Niccolò Giubelli</dc:creator>
		<pubDate>Tue, 23 Aug 2011 08:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.devliegher.be/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/#comment-1364</guid>
		<description>There is no index.php inside of /symfony (this is the name of the subfolder).
However I put a test.php file and it says &quot;Internal Server Error&quot;. Apache logs say &quot;Directory index forbidden by Options directive: /web/htdocs/www.mysite.it/home/symfony/</description>
		<content:encoded><![CDATA[<p>There is no index.php inside of /symfony (this is the name of the subfolder).<br />
However I put a test.php file and it says &#8220;Internal Server Error&#8221;. Apache logs say &#8220;Directory index forbidden by Options directive: /web/htdocs/www.mysite.it/home/symfony/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: felixdv</title>
		<link>http://blog.felixdv.com/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/comment-page-1/#comment-1363</link>
		<dc:creator>felixdv</dc:creator>
		<pubDate>Tue, 23 Aug 2011 08:33:35 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.devliegher.be/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/#comment-1363</guid>
		<description>Hi Paolo, does the apache user and group (usually www-data or nobody) has read rights on the symfony directory in your web root?

Try accessing /symfony/index.php directly and see if that works.</description>
		<content:encoded><![CDATA[<p>Hi Paolo, does the apache user and group (usually www-data or nobody) has read rights on the symfony directory in your web root?</p>
<p>Try accessing /symfony/index.php directly and see if that works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paolo Niccolò Giubelli</title>
		<link>http://blog.felixdv.com/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/comment-page-1/#comment-1362</link>
		<dc:creator>Paolo Niccolò Giubelli</dc:creator>
		<pubDate>Tue, 23 Aug 2011 08:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.devliegher.be/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/#comment-1362</guid>
		<description>Hi! I followed your guide, however Apache returns me a 403 error, saying &quot;Forbidden - You don&#039;t have permission to access /symfony/ on this server&quot;.
Can you post here your *external* (httpd root directory) .htaccess?
Thank you in advance,
Paolo</description>
		<content:encoded><![CDATA[<p>Hi! I followed your guide, however Apache returns me a 403 error, saying &#8220;Forbidden &#8211; You don&#8217;t have permission to access /symfony/ on this server&#8221;.<br />
Can you post here your *external* (httpd root directory) .htaccess?<br />
Thank you in advance,<br />
Paolo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: syntax3rror</title>
		<link>http://blog.felixdv.com/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/comment-page-1/#comment-1201</link>
		<dc:creator>syntax3rror</dc:creator>
		<pubDate>Tue, 15 Mar 2011 06:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.devliegher.be/2008/01/17/symfony-in-a-subdirectory-of-your-documentroot/#comment-1201</guid>
		<description>Dudes, can u put the put content of you .htaccess?

I fallow your instruction and still no luck for me.

Here is my .htaccess content

Options +FollowSymLinks +ExecCGI


  RewriteEngine On

  # uncomment the following line, if you are having trouble
  # getting no_script_name to work
  RewriteBase /testing/

  # we skip all files with .something
  #RewriteCond %{REQUEST_URI} \..+$
  #RewriteCond %{REQUEST_URI} !\.html$
  #RewriteRule .* - [L]

  # we check if the .html version is here (caching)
  RewriteRule ^$ index.html [QSA]
  RewriteRule ^([^.]+)$ $1.html [QSA]
  RewriteCond %{REQUEST_FILENAME} !-f

  # no, so we redirect to our front web controller
  RewriteRule ^(.*)$ index.php [QSA,L]



Thanks</description>
		<content:encoded><![CDATA[<p>Dudes, can u put the put content of you .htaccess?</p>
<p>I fallow your instruction and still no luck for me.</p>
<p>Here is my .htaccess content</p>
<p>Options +FollowSymLinks +ExecCGI</p>
<p>  RewriteEngine On</p>
<p>  # uncomment the following line, if you are having trouble<br />
  # getting no_script_name to work<br />
  RewriteBase /testing/</p>
<p>  # we skip all files with .something<br />
  #RewriteCond %{REQUEST_URI} \..+$<br />
  #RewriteCond %{REQUEST_URI} !\.html$<br />
  #RewriteRule .* &#8211; [L]</p>
<p>  # we check if the .html version is here (caching)<br />
  RewriteRule ^$ index.html [QSA]<br />
  RewriteRule ^([^.]+)$ $1.html [QSA]<br />
  RewriteCond %{REQUEST_FILENAME} !-f</p>
<p>  # no, so we redirect to our front web controller<br />
  RewriteRule ^(.*)$ index.php [QSA,L]</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

