搭建apache2+laravel(php)环境
作者:gcbeen
日期:2014年03月04日
搭建apache2+php环境
ubuntu 12.04 apache2 2.4.7 laravel4.2(php)
1.安装lavavel
composer create-project laravel/laravel project_name ln -s /project_path /var/www/project_name sudo chmod -R 0777 app/storage
- enable rewrite module
#/etc/apache2/ a2enmod rewrite
3.apache2配置
<VirtualHost *:83> # The location of our projects public directory. DocumentRoot /var/www/project_name/public # Useful logs for debug. CustomLog /var/www/project_name/apache2/out.log common ErrorLog /var/www/project_name/apache2/err.log # Rewrites for pretty URLs, better not to rely on .htaccess. <Directory /var/www/happy-php/public> <IfModule mod_rewrite.c> Options Indexes FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [L] </IfModule> </Directory> </VirtualHost> # terminal mkdir /project_path/apache2/ touch /project_path/apache2/out.log /project_path/apache2/err.log
blog comments powered by Disqus