我目前正在尝试在我的在线网站中使用该(.htaccess)脚本之前清理我的本地机器(wamp)中的 URL。这是我的本地主机地址
http://localhost/index.php
http://localhost/people.php
http://localhost/current.php
我想清理这个网址
http://localhost/home/
http://localhost/People/
http://localhost/Current/
分别。但是对于开始(也为了简单),我只想将index.php文件更改为home。我在搜索网页时发现了这个脚本
RewriteEngine on
RewriteRule ^home/?$ index.php [NC,L]
但是当我在我的本地机器上尝试这个脚本时没有任何效果,我的网址仍然显示如下
http://localhost/index.php
我不知道我哪里出错了,任何人都可以帮助我..