-2

嗨,我想将每个请求的 URI 重定向到具有相同 URI 的另一个 URL :) 像这样

http://www.fb.com/everything

重定向到

http://www.facebook.com/everything

http://www.fb.com/anotherthing

重定向到

http://www.facebook.com/anotherthing

我想要动态的

使用 php 或 htaccess

4

2 回答 2

1

您只需要一个重定向指令

Redirect 301 / http://www.facebook.com/
于 2013-01-31T18:01:51.813 回答
0

要重定向来自您的 htaccess 的所有流量,请使用以下代码

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{REQUEST_URI} ^/$
    RewriteRule ^(.*)$ http://domain.tld/$1 [R=301,L]
</IfModule>
于 2013-01-31T17:57:48.263 回答