You don't have permission to access the requested object. It is either read-protected or not readable.
原因是xmapp路徑文件夾下的? apache/conf/httpd.conf中的Directory用了默認的配置,禁止訪問所有目錄
? ? AllowOverride none? ? Require all denied
作如下的修改即可
? ? AllowOverride none? ? Require all granted#或者是如下的配置??? Options FollowSymLinks??? AllowOverride None??? Order deny,allow??? Allow from all