我在我的 xampp 服务器上尝试使用 php 脚本重写 url。首先,我在与脚本相同的文件夹中创建了一个 .htaccess,然后在其中编写了以下几行
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^direct/?$ direct_name_here.php [NC,L]
将 localhost/map/direct_here123.php 重写为 localhost/map/direct/
但是浏览器显示 url localhost/map/direct_here123.php 而不是 localhost/map/direct/
我该如何解决?
关于 ED