【发布时间】:2014-05-06 02:30:59
【问题描述】:
我正在尝试使用 .htaccess 的重写功能来重写以下 url
http://just-for-testing.com/index.php?type=hello
到
http://just-for-testing.com/hello
所以我有以下 index.php 文件
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<a href="?type=hello">hello</a>
</body>
</html>
还有 .htaccess 文件
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
但是还是不行,url还是链接到
index.php?type=hello
有人可以帮忙吗?
谢谢
【问题讨论】: