标签:io 文件 ar html htm c app php
sudo apt-get install apache2
sudo apt-get install php5
sudo apt-get install php5-mcrypt
需要开启 mod_rewrite
模块
修改 apache2 的配置文件 /etc/apache2/apache2.conf
为 laravel 目录添加权限,rewrite 需要同时有 Options Indexes FollowSymLinks 和 AllowOverride All
<Directory /var/www/html/laravel>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
--------------------------------------------------------------------------------
打开 app.php 的 debug
标签:io 文件 ar html htm c app php
原文地址:http://www.cnblogs.com/tomren/p/3889067.html