nginx path_info in alias environemnt
问题 I need to get this working on nginx with php-fpm: example.com/studip/dispatch.php/admin/user/ The Problem seems to be, that /studip isn't a subfolder under root but a alias to /usr/local/studip/public/ Here's the configuration without the (non working) path_info foo: server { listen 80; server_name example.com; root /var/www/example.com/htdocs; index index.php # Here are a few other subfolders hosted # ... # ... # and now studip: location /studip { alias /usr/local/studip/public/; index index