APACHE: allow outside access to your apache www host

person Jason Huangfolder_openApache, Codelocal_offer, access_time March 5, 2019

Edit the httpd.conf file,

find the section with

Example:



    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Allow from all

if you want web site to allow outside access to specific folder on your apache server, find or add the configuration for specific folder on your web server.
For example, /wwww


    Options +Indexes +FollowSymLinks +Multiviews
    Order Deny,Allow
    Allow from all

warningComments are closed.