Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple path question... 1

Status
Not open for further replies.
In the httpd.conf you should find the following:

# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.

Alias /icons/ "C:/phpdev/apache/icons/"

<Directory &quot;C:/phpdev/apache/icons&quot;>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

This refers to an alias but check you virtual directive for the trailing slash. Also Front Page extensions may cause your system to require a trailing /.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top