web-dev-qa-db-ja.com

xamppドキュメントルートの変更

Eclipse IDEで、「C:/ users/matt/documents/web /」にワークスペースを設定しました。「C:/」フォルダにtestというプロジェクトを設定しました。 users/matt/documents/web/test」。httpdファイルのドキュメントルートを「C:/ users/matt/documents/web /」に変更しました。

「C:/ users/matt/documents/web/test」をブラウザに入れましたが、http://localhost/xampp/web/test/http://localhost/web/test/http://localhost/test/と同じように、ワークスペース内のファイルにアクセスできません。 。

私はサーバー構成について深く理解していません。助けてください!

8

c:\ XAMPP\Apache\conf\httpd.conf

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot C:/users/matt/documents/web/
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory C:/users/matt/documents/web/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

Apache Webサーバーを再起動してから...次のように入力します: http:// localhost/test

過去を確認してください 質問

17
Tineo

構成を変更した後、Webサーバーを再起動してください。

8
Andreas Linden

your\path\to\Apache\conf\extra\httpd-ssl.confでもDocumentRootを変更してください。

8
falux