tristanlee85
29th July 2008, 16:35
I am trying to configure a virtual directory to my ColdFusion administrator. I currently have this:
#
# This is the virtual directory for CFIDE
#
ScriptAlias /CFIDE/ "/var/www/html/CFIDE/"
<Directory "/var/www/html/CFIDE">
AllowOverride None
Order allow,deny
Allow from all
</Directory>
When I go to www.mydomain.com/CFIDE/administrator/ I get a 403, but when I go to www.mydomain.com/CFIDE/administrator/index.cfm it works fine except images won't show and I get a 500 error. I added "index.cfm" to my DirectoryIndex line too.
#
# This is the virtual directory for CFIDE
#
ScriptAlias /CFIDE/ "/var/www/html/CFIDE/"
<Directory "/var/www/html/CFIDE">
AllowOverride None
Order allow,deny
Allow from all
</Directory>
When I go to www.mydomain.com/CFIDE/administrator/ I get a 403, but when I go to www.mydomain.com/CFIDE/administrator/index.cfm it works fine except images won't show and I get a 500 error. I added "index.cfm" to my DirectoryIndex line too.