web-dev-qa-db-ja.com

WampServer 2.5でwwwルートディレクトリを変更する方法

私の必要は、wampのデフォルトのサイトディレクトリを「c:\ wamp\www」から「d:\ sites」に変更することです。現在、「d:\ sites」のプロジェクトはプロジェクトリストに表示されません。

enter image description here

私はこのようないくつかの過去の答えを見つけました onethis WampServer 2.5に適用できないと思うもの(とにかく、私にとってはうまくいきませんでした)。

また、ドキュメントで procedure を見つけましたが、必要なものにはあまりにも複雑すぎるようです。

この問題に関する助けをいただければ幸いです。

12
c0der

新しいバージョンのwampでは、httpd.confのDocumentRootを変更してもDOCUMENT_ROOTは変更されませんでした。再起動後も、「c:/ wamp64/www /」のままでした。

代わりに、このファイルにDocumentRootが設定されます。

  c:\wamp64\bin\Apache\apache2.4.18\conf\extra\httpd-vhosts.conf

Localhostディレクトリを変更するには、これらをパスに変更します。

      DocumentRoot c:/www
      <Directory  "c:/www/">
29
psycho brm

あなたがしたいことは少しトリッキーです。あなたがしたいことを行うには、次の手順に従ってください:

1ファイルを開くC:\wamp\bin\Apache\Apache*.*.*\conf\httpd.conf

2次の行を検索:

DocumentRoot "c:/wamp/www"
<Directory "c:/wamp/www">

ルートディレクトリを変更するためにそれらを変更します/*In my case i want my "C:\" drive as root*/だから私はこれを行う:

DocumentRoot "c:/"
<Directory "c:/">

4では、c:\wamp\www検索index.phpをコピーして、新しいルートに害虫を付けます/*In my case i want my "C:\" drive as root*/

5ここで、index.phpそして次の行を見つけます。

$wampConfFile = '../wampmanager.conf';
$aliasDir = '../alias/';

6これで、ルート/*In my case i want my "C:\" drive as root*/だから私は書く:

$wampConfFile = './wamp/wampmanager.conf';
$aliasDir = './wamp/alias/';

これで、画像に示されているデフォルトの沼のオープニングページが表示されます!

7
G4uKu3_Gaurav
  1. httpd.confファイルを検索します

enter image description here

  1. DocumentRootとPathを必要なものに変更します。

enter image description here

  1. httpd-vhosts.confファイルを検索します

enter image description here

  1. DocumentRootとPathを必要なものに変更します。

enter image description here

  1. すべてのサービスを再起動します

enter image description here

2
Pablo Salazar
  1. Apache httpdに移動します

    C:\ wamp\bin\Apache\apache2.2.22\conf

  2. Httpdを開く

  3. そのファイルでDocumentRootを見つける

  4. パスを変更する

  5. ディレクトリタグを見つける

  6. Allow from allfromDeny from allからDirectoryタグに変更します

    <Directory />
      Options FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
    </Directory>
    
  7. 保存して終了

  8. ワンプサービスを再起動する

0
Pranav V R