0
我有一個鏈接,看起來像這樣:遇到問題重定向的URL與的.htaccess
http://www.example.com/football/nfl
,我想重定向到這樣的:
http://www.example.com/nfl-lines/
我嘗試這樣做:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^http://www.example.com/football/nfl.*$ http://www.example.com/nfl-lines/ [R=301,L]
不起作用.. 和minuites的cupple我將其更改爲:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^/football/nfl.*$ http://www.example.com/nfl-lines/ [R=301,L]
,因爲我認爲這是寫的正確方法。當然,如果它有效,我會在這裏更新。
這是正確的方法嗎?
使用:'RewriteRule^/?football/nfl /?$/nfl-lines/[R = 301,L]' – anubhava 2014-09-10 08:24:58