使用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
答案 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>