Forum Moderators: bakedjake
I have Mac OS 10.2.8 and thought I would use the included Apache server to view sites during development instead of uploading to remote host all the time.
All is well and running, but I can't make the included file show up in the .shtml documents. The file is requested by "include virtual" (I have also tried "include file") and has a .txt extension (have also tried ".inc")
Have been searching the web and the "httpd.conf" file for tips, but no go.
Can someone suggest a solution?
TIA
Dan
Added "Includes" to my personal config file:
<Directory "/Users/danne/Sites/">
Options Indexes MultiViews Includes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
....and it's working!
D