Getting .htaccess to work for all directories - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T16:44:46Zhttp://stackoverflow.com/feeds/question/1693581http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1693581/getting-htaccess-to-work-for-all-directories0Getting .htaccess to work for all directoriesStephenhttp://stackoverflow.com/users/1967752009-11-07T16:30:46Z2009-11-07T16:30:46Z
<p>I'm having a problem with .htaccess.</p>
<p>I've inserted</p>
<pre><code><IfModule mod_php5.c>
php_flag include_path ".:/usr/local/lib/php:library/"
php_admin_flag safe_mode on
</IfModule>
</code></pre>
<p>inside the public_html folder, and it works for that folder only. When I go into sub-directories of public_html, it ignores that and the 'include_path' is different to the one i specified. </p>
<p>I'm doing it this was because I don't have access to the php.ini file.</p>
<p>Anyone know where I'm going wrong?
Thanks</p>