0
我猜它需要是htaccess。我嘗試過:如何將example.com/example重定向到外部網址?
Redirect 301/http://www.newurl.com/
但是,我在newurl.com/example。
我猜它需要是htaccess。我嘗試過:如何將example.com/example重定向到外部網址?
Redirect 301/http://www.newurl.com/
但是,我在newurl.com/example。
如果你只是想直接到另一個網址,你可以使用一個RewriteRule
RewriteEngine On
RewriteRule ^example http://www.newurl.com [L,R=301]
你有什麼期望的最終結果是什麼? – 2012-02-07 20:00:22
http://www.newurl.com – miles 2012-02-07 20:02:04