科技常识:PHP开发框架kohana3.3.1在nginx下的伪静态设置例子

2021-03-16 20:25:26
导读 今天小编跟大家讲解下有关PHP开发框架kohana3 3 1在nginx下的伪静态设置例子 ,相信小伙伴们对这个话题应该也很关注吧,小编也收集到了有

今天小编跟大家讲解下有关PHP开发框架kohana3.3.1在nginx下的伪静态设置例子 ,相信小伙伴们对这个话题应该也很关注吧,小编也收集到了有关PHP开发框架kohana3.3.1在nginx下的伪静态设置例子 的相关资料,希望小伙伴会喜欢也能够帮助大家。

Kohana 是一款纯 PHP5 的框架,基于 MVC 模式开发, 它的特点就是高安全性,轻量级代码,容易使用,并且最新的kohana3支持HMVC模式。以下是在nginx环境下的kohana伪静态配置参考例子:

server{listen 80;server_name 55zaza;index index.html index.htm index.php default.html default.htm default.php;root /home/wwwroot/55zaza;#include kohana_rw.conf;location / {index index.php;try_files $uri $uri/ /index.php?$uri&$args;}location ~ .*\.(php|php5)?${try_files $uri =404;fastcgi_pass unix:/tmp/php-cgi.sock;fastcgi_index index.php;include fcgi.conf;}location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)${expires 30d;}location ~ .*\.(js|css)?${expires 12h;}access_log off;}

来源:爱蒂网

免责声明:本文由用户上传,如有侵权请联系删除!

猜你喜欢

最新文章