0
私はWAMP 3.06を使用しています。私は「C:/ wamp64/www /のwebagenda」でホストされているウェブサイト持って、私は「http://cloudappoint.myvnc.com」を使用してリモートサイトにアクセスしようとするとWAMP 3.06、仮想ホストへのディレクトリが壊れていますか?
を、私が取得:
Forbidden
You don't have permission to access /webagenda on this server.
Apache/2.4.23 (Win64) PHP/5.6.25 Server at agenda.myvnc.com Port 8000
私のバーチャルホストファイルは以下のとおりです。 IIは、次の行のコメントを解除場合
# Virtual Hosts
<VirtualHost *:8000>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
#if I uncomment the next lines the problem is over
#<Directory "c:/wamp64/www/webagenda">
#Options Indexes FollowSymLinks Includes ExecCGI
#DirectoryIndex index.php
#AllowOverride None
#Require all granted
#</Directory>
<VirtualHost *:8000>
ServerName cloudappoint
ServerAlias cloudappoint.myvnc.com
DocumentRoot c:/wamp64/www/webagenda
ErrorLog "logs/agenda-error.log"
CustomLog "logs/agenda-access.log" common
<Directory "c:/wamp64/www/webagenda/">
Options +Indexes +FollowSymLinks +MultiViews
DirectoryIndex index.php
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
は、あなたが私のコメントからわかるように、問題は終わった:
<Directory "c:/wamp64/www/webagenda">
Options Indexes FollowSymLinks Includes ExecCGI
DirectoryIndex index.php
AllowOverride None
Require all granted
</Directory>
何が間違っていますか?
を言ってません8000は、たぶん、あなたは 'URLにポート番号を追加するには忘れている:8000' – RiggsFolly