我在我的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