찾다

 >  Q&A  >  본문

nginx下tp如何配置路由重写

index.php/Api/Sendems/sendCode.html 
这个路径,apache可以加载.htaccess,进行路由重写
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
那nginx要怎么配置路由重写呢


高洛峰高洛峰2959일 전697

모든 응답(1)나는 대답할 것이다

  • 三叔

    三叔2016-10-28 10:00:20

    配置文件中增加

     rewrite  ^(.*)$  /index.php?s=$1  last;


    회신하다
    0
  • 취소회신하다