我目前在我的.htaccess中设置了这个:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.olddomain.com$
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
但是,我希望将旧域中的所有URL重定向到新域的根目录(而不是重定向到新域上的相同路径)。
有人可以纠正上述代码吗?
非常感谢!
答案 0 :(得分:1)
您可以使用:
Public GameObject GoneGo;
void OnTriggerEnter2D(Collider2D collisionObject)
{
if (collisionObject.gameObject.tag == "Orb")
{
PlayGone();
}
}
void PlayGone()
{
GameObject gone = (GameObject)Instantiate(GoneGo);
gone.transform.position = transform.position;
}