15621857753

thinkphp6.X框架Apache-URL规则重写

来源:齐鲁建站 栏目:开发教程 阅读: 日期:2023-01-18

thinkphp6.X框架Apache-URL规则重写

下面来说说thinkphp6.X框架Apache-URL规则重写

直接上代码:

<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>

像是域名重置,验证码不出来,都可以解决。。。

展开