thinkphp5.1 tp5.1 安装 初始化 配置 重写 url 路由 Rewrite

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  
  
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>
原文地址:https://www.cnblogs.com/wzjwffg/p/9883835.html