Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: php файл не парсится, а от даётся как есть
11.12.2011 22:25, mennanov пишет:
Здравствуйте, у меня на проекте
следующая структура папок:
engine/
__index.php
webroot/
__images/
__css/
__cms/
______engine/
_________index.php
______webroot/
_________images/
_________css/
_________js/
___________uploader/
_____________upload.php
___________jquery/
others/
И такой конфиг:
server {
listen 8080;
server_name glinka.fm;
root /home/renat/www/glinka;
index index.php index.html;
location / {
try_files /webroot/$uri /engine/index.php?$args;
}
location ~ ^/cms/?(.*)$ {
try_files /webroot/cms/webroot/$1
/webroot/cms/engine/index.php?$args;
}
location ~ \.php$ {
try_files $uri /webroot/$uri =404;
include fastcgi.conf;
}
}
локейшены "~ ^/cms/?(.*)$" и "~ \.php$ " местами поменяйте.
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|