欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx下tp如何配置路由重写

程序员文章站 2022-05-12 10:41:11
...
index.php/Api/Sendems/sendCode.html
这个路径,apache可以加载.htaccess,进行路由重写

Options +FollowSymlinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]


那nginx要怎么配置路由重写呢

回复内容:

index.php/Api/Sendems/sendCode.html
这个路径,apache可以加载.htaccess,进行路由重写

Options +FollowSymlinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

那nginx要怎么配置路由重写呢

配置文件中增加

 rewrite  ^(.*)$  /index.php?s=$1  last;
相关标签: php