0
我想使用的.htaccess的重寫功能,以改寫以下網址的.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]
但是,它仍然沒有工作,鏈接仍然是鏈接到
index.php?type=hello
任何人都可以給予幫助?
謝謝
它的工作原理,非常感謝! –