我正在将我的 php 脚本修改为对 SEO 友好
当我第一次单击 test.php 页面中的链接时,它在 url 中显示为 htp://example/test/first 工作正常。当点击第二次 url 成为 htp://example/test/test/first .test 文件夹继续添加到 URL
如何解决这个问题。
##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