forbidden You don't have permission to access on html access? - This is symbolic link folder to view/access on web browsers.
I have found the answer from http://stackoverflow.com
I have found the answer from http://stackoverflow.com
I Faced the same issue but i solved it by setting the options directive either in the global directory setting in the httpd.conf or in the specific directory block in httpd-vhosts.conf
by default your global directory settings is (httpd.conf line : 291):
Finally, it should look like:
Options Indexes FollowSymLinks Includes ExecCGI
by default your global directory settings is (httpd.conf line : 291):
<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Directory>
set the options to :
Options Indexes FollowSymLinks Includes ExecCGI
Finally, it should look like:
<Directory />
#Options FollowSymLinks
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
Comments
Post a Comment