配置Apache和laravel

使用vim编辑配置文件

vim /etc/httpd/conf/httpd.conf
  • 打开重启模块(将以下这行的#去除)
LoadModule rewrite_module modules/mod_rewrite.so
  • 把AllowOverride None改成AllowOverride All
  • 配置虚拟主机,把下面这段加在/etc/httpd/conf/httpd.conf最后面,注意去掉注释

ServerAdmin [email protected]                //随便哪个邮箱
DocumentRoot "/var/www/html/laravel5.2/public"   //项目的访问路径
ServerName www.aliyun.com                  //域名,绑定这台服务器的IP
DirectoryIndex index.php index.html index.htm    //访问网站时默认打开的文件
ErrorLog "logs/www.aliyun.com-error_log"       //日志
CustomLog "logs/www.aliyun.com-access_log" common //日志

你可能感兴趣的:(配置Apache和laravel)