Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Помогите, как настроить конфигурацию nginx для EE, nginx работает с PHP как fast_cgi.
Как убрать index.php из адресной строки?
server {
listen 80;
server_name mydomain.com www.mydomain.com;
access_log logs/access.log main;
location / {
root /srv/www/www.mydomain.com;
index index.php index.html index.htm;
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?/$1? last;
}
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~* \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/www.mydomain.com$fastcgi_
include fastcgi_params;
}
location /index.php {
set $script $uri;
set $path_info $uri;
if ($args ~* "^(/.+)$") {
set $path_info $1;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/www.mydomain.com$fastcgi_
include fastcgi_params;
}
}