仮想ホストを設定しようとするのは初めてで、少し迷っています。仮想名「tp3.localhost」を設定したい。
質問:
私の AMMPS URL はlocalhost:8585です。hosts ファイルに127.0.0.1 tp3.localhostまたは127.0.0.1:8585 localhostと書く必要がありますか?
httpd-vhosts.conf に書いたコードは次のとおりです。
NameVirtualHost tp3.localhost
<VirtualHost tp3.localhost>
<Directory "/Applications/AMPPS/www">
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
Allow from All
</Directory>
ServerName tp3.localhost
ServerAlias localhost:8585 127.0.0.1:8585
ScriptAlias /cgi-bin/ "/Applications/AMPPS/www/cgi-bin/"
DocumentRoot "/Applications/AMPPS/www"
ErrorLog "/Applications/AMPPS/apache/logs/error.err"
CustomLog "/Applications/AMPPS/apache/logs/access.log" combined
</VirtualHost>
AMMPS は MAMP の代替手段です。