最近的各种调查PHP相框(CI, Cake, ThinkPHP, Laravel, Yii)情绪Laravel它看起来很漂亮,下一个深入了解。用发展机Apache,Stage在运行nginx,一旦部署在所有重定向的报告404错误条件。搞了半天,最后,下面的代码被添加到nginx置中最终搞定了。

    try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
}

配置文件看上去是这种:

server {
listen 80;
server_name yourdomain.com;
root 'PATH_POINTING TO YOUR PUBLIC WEB FOLDER';
index index.php; try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
} # PHP FPM configuration.
location ~ \.php {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
} # We don't need .ht files with nginx.
location ~ /\.ht {
deny all;
}
}

版权声明:本文博主原创文章。博客,未经同意不得转载。

最新文章

  1. ES6 - Note5:Promise
  2. MySql 插入数据中文乱码
  3. js设计模式(12)---职责链模式
  4. Android_xml背景色的值
  5. brief introduction JAVA new I/O (NIO)
  6. EF Unit Of Work
  7. 王者荣耀_KEY
  8. Docker启动的问题解决笔记
  9. Go 语言 HTTP Server 源码分析
  10. socket编程 ------ UDP服务器
  11. MLlib之NaiveBayes算法源码学习
  12. centos7分区建议
  13. scala case类
  14. 20155205 《Java程序设计》实验三(敏捷开发与XP实践)实验报告
  15. Linux巩固记录(5) hadoop 2.7.4下自己编译代码并运行MapReduce程序
  16. Android -- queryIntentActivities
  17. SharePoint 2013 处理videoplayerpage.aspx下的个人图片显示有误问题
  18. 微信公众号H5支付
  19. Asp.net 页面传值的方法
  20. vs 编译error1083

热门文章

  1. OpenCV中的SVM參数优化
  2. python学习笔记之11:图像用户界面
  3. HDU 2828 DLX搜索
  4. WebView使用配置文件
  5. 程序设计实践C++ 程序代写(QQ 928900200)
  6. C语言中的static 具体分析
  7. 泛泰A860 Andorid4.4.3 KTU84M (Omni) 图赏
  8. IOS_多线程_ASI_AFN_UIWebView
  9. 乐在其中设计模式(C#) - 建造者模式(Builder Pattern)
  10. UVA 11774 - Doom's Day(规律)