我的項目是保存在C的configuraton全設置:/ WAMP/WWW/EducationPortal 現在在瀏覽器中我要開www.eportal.com爲本地主機
文件我已經作出的httpd變化。 conf with
<VirtualHost *:80>
DocumentRoot "C:/wamp/www/EducationPortal"
ServerName www.eportal.com
# ServerAlias www.site1.dev
Options Indexes FollowSymLinks
<Directory "C:/wamp/www/EducationPortal">
AllowOverride All
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from localhost
Allow from ::1
</Directory>
</VirtualHost>
現在我該怎麼做呢?
使用'vhosts',添加條目'127.0.0.1 www.eportal.com'到您的主機文件。 –
httpd.conf中需要做什麼修改? –