2011-08-21 119 views
0

我需要一些htaccess 301重定向的幫助。幫助301重定向

我想從這個規則使重定向:

RewriteRule ^author-details/([^/]+)-([^/]+).html$ /authors-details.php?id=$1&slug=$2 [QSA,L] 

這一規則:提前

RewriteRule ^([^/]+)-biography-([^/]+).html$ /authors-details.php?id=$1&slug=$2 [QSA,L] 

感謝。

回答

2
RewriteRule ^author-details/([0-9]+)-([^/]+).html$ http://your.host/$1-biography-$2.html [QSA,R=301] 

或只是

RewriteRule ^author-details/([0-9]+)-([^/]+).html$ $1-biography-$2.html [QSA,R=301] 

mod_rewrite reference

+0

由於裂縫,但有一個小問題。上面的代碼重定向到http://your.host/450-stephenie-biography-meyer.html,這是不正確的。正確的URL是http://your.host/450-biography-stephenie-meyer.html – Psyche

+0

嘗試更新的代碼並確保它是您正在測試的新代碼 - 瀏覽器緩存301重定向。 – Crack

+0

現在工作。謝謝。 – Psyche