0
我正在修改我的PHP腳本,搜索引擎友好URL htaccess的變化之後,從每次點擊修改
當我點擊它在URL顯示test.php的網頁鏈接第一次作爲 HTP://例子/測試/首先 工作正常。 當點擊第二次URL作爲成爲 HTP://例子/測試/測試/第一。測試文件夾是不斷添加到URL
如何reslove這個問題。
##test.php
<html>
<head></head>
<body>
<a href='test/first'>testing</a> <br>
<body>
</html>
##.htaccess
RewriteEngine On
RewriteBase
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} /$
RewriteRule (.*)/ $1 [R=301]
RewriteRule ^test/(.+) /test.php?$1 [L]
DirectoryIndex test.php
如何鏈接你點擊的樣子是什麼樣子? – egig 2013-04-05 11:39:37