|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果你只是想应付一下操作系统的课程,劝你最好别学,或者说不要指望能用的怎么样。
开辟情况
codeigniter2.14
PHP5.4.18
nginx1.4.2
Codeigniter设置
翻开codeignite的config.php文件修正以下:- $config[uri_protocol]="PATH_INFO";
复制代码 nginx设置
翻开nginx的设置文件nginx.conf文件,修正以下:- #我利用的是假造主机设置server{listen80;server_namedev.example.com;rewrite_logon;root/www/web/htdocs/dev.example.com;indexindex.phpindex.htmlindex.htm;location/{indexindex.phpindex.htmlindex.htm;}location~.php($|/){fastcgi_pass127.0.0.1:9000;fastcgi_indexindex.php;fastcgi_split_path_info^(.+.php)(.*)$;fastcgi_paramPATH_INFO$fastcgi_path_info;fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;includefastcgi_params;}if(!-e$request_filename){rewrite^/(.*)$/index.php/$1last;break;}location~/.ht{denyall;}}
复制代码 如今就能够用pathinfo形式会见了,如:
http://dev.example.com/app/welcome/test
Linux的常用命令find,察看man文档,初学者一定会觉得太复杂而不原意用,但是你一旦学会就爱不释手。 |
|