Betriebssystem: Ubuntu13.10
Server: Nginx 1.6
Konfigurieren Sie Nginx für den Zugriff auf verschiedene Verzeichnisse entsprechend unterschiedlicher URLs
Verwenden Sie den Standort-/Verzeichnisnamen {...}, um auf verschiedene Verzeichnisse zuzugreifen
Aber ich möchte das Laravel4-Framework erstellen und /coolwifi/test direkt in /coolwifi/public/index.php/test analysieren, aber es wird ein Fehler gemeldet:
Symfony Component HttpKernel-Ausnahme NotFoundHttpException
Der Zugriff über http://localhost/coolwifi/public/index.php/test ist aber möglich
was soll ich machen?
Die Standardkonfigurationsdatei lautet wie folgt:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /home/kimhwawoon/nginx;
index index.php index.html index.htm;
# Make site accessible from http://localhost/
server_name localhost;
location /coolwifi/ {
index index.php;
#if (!-e $request_filename) {
# rewrite ^/(.*)$ /public/index.php? last;
# break;
#}
try_files $uri $uri/ /coolwifi/public/index.php?$args;
}
location /phpmyadmin/ {
index index.php
try_files $uri $uri/ /phpmyadmin/index.php?$args;
}
location /swagger/ {
index index.html index.php;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
按照单个server怎么弄都不行,最后设置了多个server可以解决问题,并且在本机的/etc/hosts配置了多个域名指向本地,使用不同的域名区分不同的目录
请问楼主使用过phalcon吗?最近我学习了下phalcon,但是按你这样设置所有的路由都重定向到了index/index了,请问你有解决方案吗?谢谢