2017-02-24 61 views
1

我想重定向一個特定的頁面:重定向的.htaccess使用問號仍然沒有工作

http://olddomain.com/index.php?p=70 to http://newdomain.com/newpage.php 

我嘗試創建的.htaccess這樣,但仍然沒有工作:

Redirect 301 /index.php?p=70 http://newdomain.com/newpage.php 

任何幫助不勝感激。由於

回答

0

嘗試:

RewriteEngine on 

RewriteCond %{THE_REQUEST} /index.php\?p=70\s [NC] 
RewriteRule^http://example.com/newpage.php? [L,R] 
+0

謝謝哥們。現在是工作。 – Harris