利用.htacess 实现重定向

步骤:

在网站目录下加入 .htaccess

文件中写

RewriteEngine On
RewriteRule ^.*$ index.php


表示开启重写机制

重写到 index.php 的文件

原文地址:https://www.cnblogs.com/keanuyaoo/p/3364697.html