Nginx + CI exception 404

Source: Internet
Author: User
Nginx + CI error 404 recently I just learned the ci framework and made a simple project. all the local server-building environments were called, but when I deployed it to a remote server: & nbsp; example.com (index. php) & nbsp; accessible (for the configured default controller-class) example.com (index. php) [controller-clas Nginx + CI error 404

Recently I just learned the ci framework and made a simple project. all the local server-building environments have been called, but when I deploy it to a remote server:

Http://example.com/(index. php)/accessible (for the default controller-class configured)

Http://example.com/(index. php)/[controller-class]/[controller-method] inaccessible (error 404 !)

Baidu:

For URLs such as/index. php/abc, Apache and Lighttpd press "index. php? Nginx considers the content of the abc file under the "index. php" directory as the request name. Therefore, CI cannot run without configuring rewrite in nginx, but is normal in Apache and Lighttpd.

Solution (Key Points PlusRough, Highlighted in red ):

 1   server { 2         listen 80; 3         server_name example.com; 4         root /data/wwwroot/example/ 5         index index.php index.html index.htm; 6  7         location ~* \.(css|js|swf|htm|jpg|png|gif|json|atlas)?$ { 8             expires 1d; 9             add_header Pragma public;10             add_header Cache-Control "public";11         }12         13         location /controller-class/ {14             if (!-e $request_filename) {15                 rewrite ^/controller-class/(.*)$  /controller-class/index.php?q=$uri&$args;16             }17         }18  19         location ~ \.php$ {20             fastcgi_pass   127.0.0.1:9000;21             fastcgi_index  index.php;22             fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;23                         fastcgi_param  PHP_VALUE        open_basedir=$document_root:/tmp/:/proc/;24             include        fastcgi_params;25         }26 27     }

Reference: http://www.2cto.com/ OS /201301/185926.html?nginx=ci40404incorrect question]

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.