前言:
今天我们对“laravelapache部署”大体比较注重,小伙伴们都想要学习一些“laravelapache部署”的相关资讯。那么小编也在网上汇集了一些对于“laravelapache部署””的相关文章,希望姐妹们能喜欢,同学们快快来了解一下吧!一个服务器不能配置多个子域名的时候很是尴尬,无法使用虚拟目录,只能通过二级目录访问。在根目录/data/wwwroot/default部署了多个laravel应用,laravel1,-laravel2...,然后按文档配置所谓的优雅链接,遇到了诸多问题:
apache服务器:XAMPP的lamp环境nginx服务器:OneinStack自动部署lnmp环境
Apache服务器
在lamp环境下使用还是蛮简单,配置Laravel/public/.htaccess:
Options +FollowSymLinksRewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^ index.php [L]
即可,访问的地址:
nginx服务器
文档中说,只要在nginx.conf下配置:
location / { try_files $uri $uri/ /index.php?$query_string;}
即可,访问优雅链接,但结果有点失望,你会遇到问题:
Access denied.No input file specified.504...
归根结底是nginx.conf配置问题,本人遇到最多就是Access denied,因为使用OneinStack自动部署lnmp环境,nginx.conf已经默认配置了,结果仔细对比,少了下面配置
fastcgi_split_path_info ^(.+\.php)(.*)$;
参考:
难怪laravel优雅链接index.php后面一直无法访问,目前为题已解决,附上一段网上的配置:
server { listen 80; server_name _; set $root_path '/data/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; } }
都可以正常访问了,OK!
最后隐藏index.php
虽然上述配置在laravel中可以正常访问,但是一些放在public里面的静态资源可能无法访问,比如无法使用asset()函数时,路径中就包含index.php导致资源无法加载,所以建议隐藏index.php
if (!-e $request_filename) { rewrite ^/(.*)/public/(.*)$ /$1/public/index.php/$2 last; break;}
以上就无需加index.php,即可正常访问
标签: #laravelapache部署