Nginx中运行PHP框架Laravel的配置文件分享
程序员文章站
2023-11-22 23:25:10
配置文件改成这样
server {
listen 80;
server_name sub.domain.com;
set $root_pat...
配置文件改成这样
server { listen 80; server_name sub.domain.com; set $root_path '/srv/www/default'; root $root_path; index index.php index.html index.htm; try_files $uri $uri/ @rewrite; location @rewrite { rewrite ^/(.*)$ /index.php?_url=/$1; } location ~ \.php { fastcgi_pass 127.0.0.1:9000; fastcgi_index /index.php; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_param path_info $fastcgi_path_info; fastcgi_param path_translated $document_root$fastcgi_path_info; fastcgi_param script_filename $document_root$fastcgi_script_name; include fastcgi_params; } location ~* ^/(css|img|js|flv|swf|download)/(.+)$ { root $root_path; } location ~ /\.ht { deny all; } }
在centos7.1+nginx1.8.0+laravel5.0测试通过
推荐阅读
-
Nginx中运行PHP框架Laravel的配置文件分享
-
PHP中几个可以提高运行效率的代码写法、技巧分享
-
Laravel框架中扩展函数、扩展自定义类的方法,laravel框架_PHP教程
-
Nginx中运行PHP框架Laravel的配置文件分享
-
laravel - Yii2或者其他PHP框架的开发中, 如何非侵入式的为框架写注释?
-
深入解析PHP的Laravel框架中的event事件操作,laravelevent_PHP教程
-
PHP中几个可以提高运行效率的代码写法、技巧分享_php实例
-
Laravel框架中扩展函数、扩展自定义类的方法_php实例
-
php升级 - 正在运行中的服务器,如何平滑从php5.2升级到php5.3 ,linux+php-fpm+nginx
-
laravel - Yii2或者其他PHP框架的开发中, 如何非侵入式的为框架写注释?