素材牛VIP会员
thinkphp 如何实现url的rewrite
 随***火  分类:ThinkPHP  人气:1172  回帖:5  发布于6年前 收藏

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

讨论这个帖子(5)垃圾回帖将一律封号处理……

Lv3 码奴
ze***91 站长 6年前#1

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_...

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

Lv3 码奴
18***30 Linux系统工程师 6年前#2

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

Lv3 码奴
lj***10 Linux系统工程师 6年前#3

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

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

rewrite可以类似于:

location /your_app/ {
    if (!-f $request_filename) { #如果请求到css等资源则略过
        rewrite ^/your_app/(.*)$ /your_app/index.php?$1; 
    }
}
Lv6 码匠
这***生 技术总监 6年前#4

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

Lv2 入门
阿***逗 移动开发工程师 6年前#5

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

 文明上网,理性发言!   😉 阿里云幸运券,戳我领取