0

我想要一个 htaccess modrewrite 规则来重定向,我自己做了,但它一次又一次地从一个循环中重定向,所以它在我这边不起作用。

http://freemp3tx.com/anythinghttp://freemp3tx.com/anything-mp3-download.html

htaccess 文件:

DirectoryIndex home.php
RewriteEngine On
RewriteRule ^(.*)-mp3-download.html$ index.php?search=$1 [L]
4

1 回答 1

0

如果要从 to 重定向anything,则anything-mp3-download.html必须使用 a 防止无限循环RewriteCond

RewriteEngine On
RewriteCond %{REQUEST_URI} !-mp3-download.html$
RewriteRule .* $0-mp3-download.html [L]
于 2013-01-27T22:15:45.693 回答