标签:PATHINFO
让AMH虚拟主机支持PATHINFO
蓝鹰 | AMH | 2013-11-10
例如下面url形式访问:
http://www.abc.com/index.php/index/product_info/id/2
默认Nginx是不支持PATHINFO的。
AMH虚拟主机支持PATHINFO更改方法:
更改需要支持PATHINFO的主机的配置文件:
vi /usr/local/nginx/conf/vhost/domain.com.conf
参考配置:
location ~ ^(.+\.php)(.*)$
{
fastcgi_pass unix:/tmp/php-cgi-e-uncommon.com.sock;
fastcg... [阅读全文]