我在域名上有一个网站,我想转移到另一个域名。这是我的问题。根URL必须重定向到新域上的其他位置。例如:
http://subdomain.olddomain.com/ must redirect to http://www.newdomain.com/location
http://subdomain.olddomain.com/code/slug must redirect to http://www.newdomain.com/slug
我所拥有的htaccess代码无法运行
RewriteRule ^/?(.*) http://www.newdomain.com/$1 [R=302,L]
此代码适用于第二个示例,但在第一个示例中使用nog。任何人都可以帮我设置正确的htaccess代码吗?