将自定义网址从一个域重定向到另一个域

时间:2015-02-24 16:02:11

标签: apache .htaccess

使用htaccess可以吗?

我试图像这样重定向网址: onedomain.com/xyz - > anotherdomain.com/user/xyz

我试过这个但没有运气:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f

RewriteRule ^(\/?)$ http://anotherdomain.com/user/$1

1 个答案:

答案 0 :(得分:1)

我这样做:

<IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteBase /
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^(.*)$ http://anotherdomain.com/user/$1 [R=301,L]
</IfModule>