时间:2021-07-01 10:21:17 帮助过:21人阅读
把下面的内容保存为.htaccess文件放到入口文件的同级目录下,比如要重写index.php,那么在.htaccess文件里写入
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
把下面的内容保存为.htaccess文件放到入口文件的同级目录下,比如要重写index.php,那么在.htaccess文件里写入
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]