RestURL的功能是怎么实现的啊

来源:14-7 代理模式在MVC程序中的使用

Xiao_oNe_oNe

2016-11-24 18:50

localhost/Home/index


写回答 关注

2回答

  • wwhu668
    2017-02-06 00:38:49

    我的 nginx 配置 

    server {
        listen 80 default_server;
        root /var/www/;
        index index.html index.php index.htm;
        location / {
            try files $uri/ /index.php$query_string;
        }
    }


  • Sihan
    2016-12-22 23:38:29

    nginx apache 的rewrite 加 php pathinfo

大话PHP设计模式

帮助PHPer具备使用设计模式解决工程中复杂逻辑的能力

62160 学习 · 230 问题

查看课程

相似问题