jquery mobile笔记

1:http://www.wglong.com/main/artical!details?id=4#q2


2:codeigniter(ci)在nginx下返回404的处理方法即codeigniter在nginx下配置方法, 

对于/index.php/abc这种url,Apachelighttpd会按"index.php?abc"来解释,而nginx会认为是请求名字是“index.php”的目录下的abc文件的内容。所以CI在nginx下不配置rewrite是无法运行的,而在Apache和lighttpd则正常。

进入nginx的配置文件

加上一句(本来就有这句,只需要修改一下就行了

location /
                        {
                                index index.php;
                                if (!-e $request_filename) {
                                        rewrite ^/(.*)$ /index.php?$1 last;
                                        break;
                                }
                        }



然后在codeigniter项目的application/config/config.php中的$config['index_page'] = '';去掉url路径的 index.php。


3:http://kayosite.com/demo/jQuery-Mobile-HTML5/Note-3/index.html

 

你可能感兴趣的:(jquery,mobile)