本教学使用环境介绍伺服器端:Ubuntu 18.04 LTS资料库:Mariadb 10.1.34(Mysql)语言版本:php 7.3本机端:MacOS High Sierra首先安装好 apache 后,启用 rewrite 功能$ a2enmod rewrite然后再到 /etc/apache2/apache2.conf 添加内容$ nano /etc/apache2/apache2.conf内容为<Directory /var/www/>    Options Indexes FollowSymLinks    AllowOverride All    Require all granted</Directory>记得将路径设为你的网站根目录路径呦!接着将 apache reloadservice apache2 reload然后去你的网站根目录中添加档案为 .htaccess,并加入以下内容Options -IndexesOptions +FollowSymlinksRewriteEngine on在同一个 .htaccess 档案中添加 RewriteRule,就像这样Options -IndexesOptions +FollowSymlinksRewriteEngine onRewriteRule ^admin/index$ admin/index.php这样只要访问路径 /admin/index 就等于是访问了 /admin/index.php,apache已经帮你隐藏副档名了Line ID:ianmacQQ:1258554508