Oto przepis w języku angielskim:Nginx reguła przepisywania dla CodeIgniter
Any HTTP request other than those for index.php, assets folder, files folder and robots.txt is treated as a request for your index.php file.
Mam plik .htaccess
który działa poprawnie na serwerze Apache:
RewriteCond $1 !^(index\.php|assets|files|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
Niektóre poprawnych wyników dla tej reguły:
example.com
= example.com/index.php
example.com/index.php/welcome
= example.com/welcome
example.com/assets/css/main.css
! =example.com/index.php/assets/css/main.css
Próbowałem kilka narzędzi do konwersji z reguły .htaccess do Nginx reguła, ale wszystkie były błędne.
Via http://winginx.com/htaccess (brak zasady wyjątek dla folderu aktywów ...):
location/{ rewrite ^(.*)$ /index.php/$1 break; }
Via http://www.anilcetin.com/convert-apache-htaccess-to-nginx/ (błąd w $ 1 wartość):
if ($1 !~ "^(index.php|assets|files|robots.txt)"){
set $rule_0 1$rule_0;
}
if ($rule_0 = "1"){
rewrite ^/(.*)$ /index.php/$1 last;
}
Jak mogę rozwiązać ten problem? Naprawdę trudno jest debugować regułę.
Oto moja nginx config do tej pory:
server {
listen 80;
server_name www.example.com example.com;
location/{
try_files $uri $uri/ /index.php?/$request_uri;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
Jaka jest Twoja główna ścieżka i pełna ścieżka do katalogu codeigniter? –