PHP 访问本地项目需要域名后加上index.php

lakix / 2024-07-09 / 原文

根目录创建.htaccess文件
加入下面重写规则(Apache)

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