嗨,我想将每个请求的 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
您只需要一个重定向指令:
Redirect 301 / http://www.facebook.com/
要重定向来自您的 htaccess 的所有流量,请使用以下代码
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^(.*)$ http://domain.tld/$1 [R=301,L]
</IfModule>