我不能访问我的xampp服务器为其他项目而不是laravel项目....!

时间:2015-02-04 12:02:59

标签: php laravel-4 xampp

我正在学习laravel框架。我已经虚拟安装它并配置了这个C:\ Windows \ System32 \ drivers \ etc \ hosts windows系统文件。更改此文件后,Laravel项目运行良好,但我遇到其他项目的问题,他们没有工作,我收到这样的错误消息

“哎呀,看起来出事了。”

我在系统文件上配置了虚拟主机

# localhost name resolution is handled within DNS itself.
    127.0.0.1       localhost
#   ::1             localhost

    127.0.0.1       laravel.test1

有没有人遇到这个问题,或者请告诉我一些可以解决这个问题的方法。或者我在这里做过任何可怕的错误?

谢谢

1 个答案:

答案 0 :(得分:0)

在yourDrive中编辑你的httpd-vhosts文件:\ xampp \ apache \ conf \ extra   并为您想要添加的每个域

<VirtualHost *:80>
  DocumentRoot "yourDrive:\xampp\htdocs\temp"
  ServerName www.temp.dev
  ServerAlias www.temp.dev
  ErrorLog "yourDrive:/xampp/htdocs/temp/error.log"
 <Directory "yourDrive:/xampp/htdocs/temp">
   Order allow,deny
   Allow from all
 </Directory>