我的网址是这样http://localhost/mysite/index.php?page=something
我只是想成为http://localhost/mysite/something
,并在主页上它应该是http://localhost/mysite/
不是http://localhost/mysite/index.php
使用的.htaccess
下面是我在.htaccess文件中的代码:
<IfModule mod_rewrite.c>
RewriteEngine On
rewriterule ^([^-]+)$ index.php?page=$1[L]
</IfModule>
但它显示了相同于已经之前。 我不知道,如果我写的东西错了,上面的代码也许我的Apache不支持它,因为我从来没有知道。
可能有人帮助我解决这个问题?