網(wǎng)站首頁 PHP其他 正文
項(xiàng)目開發(fā)api接口時(shí),一般都是有版本的,比如 v1,v2,v3…
對應(yīng)的url可以為 /v1/user/index /v2/user/index
像這種模式怎么在thinkphp6.0實(shí)現(xiàn)呢
注意:是使用了tp6的多應(yīng)用模式,
使用多應(yīng)用需執(zhí)行 composer require topthink/think-multi-app
實(shí)現(xiàn)代碼
在路由地址添加
路由地址為 (\app\api\route\api.php),沒有可自行創(chuàng)建
<?php
use think\facade\Route;
// url版本路由,在url地址上帶版本號
Route::rule(':version/:controller/:function', ':version.:controller/:function')
->allowCrossDomain([
'Access-Control-Allow-Origin' => '*', // //解決跨域問題
'Access-Control-Allow-Methods' => 'GET,POST,OPTIONS',
'Access-Control-Allow-Headers' => 'x-requested-with,content-type,token'
]);
// 頭部模式(請求頭部帶版本號)
$version = request()->header('version');
//默認(rèn)跳轉(zhuǎn)到v1版本
if ($version == null) $version = "v1";
Route::rule(':controller/:function', $version . '.:controller/:function');
目錄結(jié)構(gòu)
執(zhí)行結(jié)果
URL重寫隱藏index.php
[ Apache ]
.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
[ Nginx ]
location / { // …..省略部分代碼
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
域名綁定應(yīng)用
如果你的多應(yīng)用使用多個(gè)子域名或者獨(dú)立域名訪問,你可以在config/app.php配置文件中定義域名和應(yīng)用的綁定。
'domain_bind' => [
'api' => 'api', // blog子域名綁定到blog應(yīng)用
'admin.tp.com' => 'admin', // 完整域名綁定
'*' => 'home', // 二級泛域名綁定到home應(yīng)用
],
原文鏈接:https://blog.csdn.net/qq_23564667/article/details/127908258
- 上一篇:沒有了
- 下一篇:沒有了
相關(guān)推薦
- 2022-09-24 python中的[1:]、[::-1]、X[:,m:n]和X[1,:]的使用_python
- 2023-12-13 統(tǒng)計(jì)Excel單元格中某個(gè)字符出現(xiàn)的次數(shù)
- 2022-11-04 go-cqhttp環(huán)境配置及安裝過程_Golang
- 2022-02-05 flask報(bào)錯(cuò):The method is not allowed for the requeste
- 2022-11-24 詳解python中@classmethod和@staticmethod方法_python
- 2023-06-18 Go語言實(shí)現(xiàn)關(guān)閉http請求的方式總結(jié)_Golang
- 2022-11-22 Golang?Compare?And?Swap算法詳細(xì)介紹_Golang
- 2022-04-18 python列表推導(dǎo)式實(shí)現(xiàn)找出列表中長度大于5的名字_python
- 欄目分類
-
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯(cuò)誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實(shí)現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡單動態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊(duì)列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支