を働いていない理由を私は間違って何をすべきかを提案してください
[how to create virtual host on apache][1]
https://www.youtube.com/watch?v=PaEs4-3Rrok
を働きました仮想ホストを動作させるには
に
(などの名前、場所...)あなたのプロジェクトでそれを適応させるために独自の変更を行い、私はあなたが私はあなたと仮定しhttp://127.0.0.1/example.com
を使用してアクセスすることができます実行しているウェブサイトを持っていると仮定私は、フォルダ「example.com」私はあなたがアーカンソーと仮定「の/ var/www /の」
の下にあると仮定しhttp://example.dev
を使用してアクセスするための仮想ホストを作成したいですeはコピー/その中に以下の内容を貼り付け
ステップ1
sudo nano etc/apache2/sites-available/example.com.conf
Ubuntuの上で作業(またはWindows 10 Ubuntuのバッシュを使用して):
<VirtualHost *:80>
ServerName www.example.dev
ServerAlias example.dev
ServerAdmin changeThisWithYourEmail
DocumentRoot /var/www/example.com/
DirectoryIndex index.php
<Directory "/var/www/dev">
Options Multiviews FollowSymLinks
MultiviewsMatch Any
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/example_error.log
CustomLog ${APACHE_LOG_DIR}/example_access.log combined
</VirtualHost>
ステップ2
sudo a2ensite example.com.conf
ステップ3
sudo nano /etc/hosts
し、ファイルの末尾に次の行を追加します
127.0.1.1 example.dev
ステップ4
sudo service apache2 restart
ステップ5
チェックhttp://example.devはhttp://example.comと同じ結果を示している場合
あなたは何ですかGoogleからのean YouTubeのチュートリアルではなく、あなたの設定を見せてください。 – ceejayoz