首页 > 编程语言 >thinkphp6 url rewrite

thinkphp6 url rewrite

时间:2022-11-08 17:14:34浏览次数:68  
标签:index rewrite url thinkphp6 Nginx php

https://www.kancloud.cn/manual/thinkphp6_0/1037488


URL重写

可以通过URL重写隐藏应用的入口文件index.php


[ Nginx ]

在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:

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


宝塔可以在nginx配置中直接选择thinkphp的模板

标签:index,rewrite,url,thinkphp6,Nginx,php
From: https://www.cnblogs.com/cute/p/16870358.html

相关文章