1

XAMPP、Linuxmintで仮想ホストを設定するのを手伝ってくれませんか。

Xampp は正しく起動し、xampp のオレンジ色のスプラッシュ ページが表示されます。問題ありません。「 /opt/lampp/etc/extra 」ディレクトリにあるvhosts ファイルを開き、次のコードを追加しました

<VirtualHost 127.0.0.2:80>
    DocumentRoot "/opt/lampp/htdocs/test/public_html"
    ServerName test.dev
</VirtualHost>

「 etc/hosts 」も開き、これを追加しました:

127.0.0.2 test.dev

XAMPPを再起動...

しかし、結果として、test.dev または 127.0.0.2 に移動すると、同じオレンジ色のスプラッシュページが表示されます.. 127.0.0.1..

また http://localhost/phpmyadmin/

言います:

Access forbidden!

New XAMPP security concept:

Access to the requested object is only available from the local network.

This setting can be configured in the file "httpd-xampp.conf".

If you think this is a server error, please contact the webmaster.

Error 403

localhost
Apache/2.4.2 (Unix) OpenSSL/1.0.1c PHP/5.4.4

どんな助けでも感謝します!

前もって感謝します!

4

1 に答える 1

0

解決しました。

httpd.conf の文字列のコメントを外しただけです。

# XAMPP 
#Include etc/extra/httpd-vhosts.conf 
于 2012-08-08T14:46:52.553 に答える