ホームページ  >  に質問  >  本文

nginx - thinkphp 如何实现url的rewrite

thinkphp 如何实现 "http://localhost/index.php?/模块/操作&quo... 变为 "http://localhost/模块/操作"
我想把URL改成这种形式,看起来会比较舒服,但是不知道怎么实现。
是在conifg里面加参数,还是在nginx里面用rewrite?

天蓬老师天蓬老师2749日前507

全員に返信(5)返信します

  • ringa_lee

    ringa_lee2017-04-10 13:14:31

    1.在配置文件将URL模式改成

    'URL_MODEL'          => '2', //REWRITE模式

    2.Apache服务器的话,将下面的内容保存为.htaccess文件放到入口文件的同级目录

    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
    </IfModule>

    Nginx.conf中配置

    location / { // …..省略部分代码
       if (!-e $request_filename) {
       rewrite  ^(.*)$  /index.php?s=$1  last;
       break;
        }
     }

    参考资料:
    http://doc.thinkphp.cn/manual/url_rew...
    http://doc.thinkphp.cn/manual/hidden_...

    建议楼主把手册看一边先,毕竟这是基础的东西。

    返事
    0
  • 高洛峰

    高洛峰2017-04-10 13:14:31

    用 rewrite 的方式。
    官方文档: 隐藏index.php

    返事
    0
  • 大家讲道理

    大家讲道理2017-04-10 13:14:31

    这个需要在nginx的配置里头rewrite。

    原来的格式可以保证在服务器(apache/nginx等)没有rewrite模块的情况下,框架也能正常运行。

    rewrite可以类似于:

    location /your_app/ {
        if (!-f $request_filename) { #如果请求到css等资源则略过
            rewrite ^/your_app/(.*)$ /your_app/index.php?$1; 
        }
    }

    返事
    0
  • PHP中文网

    PHP中文网2017-04-10 13:14:31

    nginx上rewrite建议使用官方和我都推荐的try_files方法 ;)

    location / {
        try_files $uri $uri/ /index.php$uri?$args;
    }

    看看为什么使用try_files而不是用if来判断

    传送门1:http://wiki.nginx.org/HttpCoreModule#...
    传送门2:http://wiki.nginx.org/IfIsEvil

    返事
    0
  • 迷茫

    迷茫2017-04-10 13:14:31

    开启路由匹配,然后再apache里开启rewrite模式

    返事
    0
  • キャンセル返事