
May 28th, 2005, 05:24 PM
|
|
|
|
Join Date: Apr 2007
Location: SF Bay, USA
Posts: 14
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Alias and SSI in phpdev 4.3 conflicting?
Hi All,
Using phpdev 4.3
I created an alias for a subdirectory of main tree. Which caused SSI to stop working for that subdir only, alias worked tho  . After removing the alias it worked again. Here's the part of httpd.conf causing the trouble.
Code:
Alias /knives/ "C:/Dev/site/knives/"
<Directory "C:/Dev/site/knives/">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from localhost 127.0.0.1
DirectoryIndex index.php
</Directory>
Any ideas why this could be a problem?
|