PHPスクリプトをSEOフレンドリーに変更しています
test.php ページのリンクを初めてクリックすると、URL に htp://example/test/firstとして正常に表示され ます。2回目の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