How to configure route rewriting in tp under nginx

WBOY
Release: 2016-09-22 08:56:51
Original
1976 people have browsed it

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要怎么配置路由重写呢

配置文件中增加

<code> rewrite  ^(.*)$  /index.php?s=$1  last;</code>
Copy after login
Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!