|
Volodya
volodya at real.samuraj.org
Thu May 20 16:39:13 EDT 2004
On Thu, May 20, 2004 at 12:56:55PM +0100, Terry MacDonald wrote:
[skipped]
> If I use Directory instead of Location it works except my images and css
> files are not loaded, those files are in subdirectories of /test
> (/test/images and /test/css)
Add following lines into httpd.conf:
<Location /test/css>
SetHandler default
</Location>
<Location /test/images>
SetHandler default
</Location>
That is why i prefer to use .htaccess tuning. Atleast during developing
stage. No need to touch Apache's global config.
|