Redirection Offer-Adobe Target | Community
Skip to main content
New Participant
November 21, 2019
Solved

Redirection Offer-Adobe Target

  • November 21, 2019
  • 2 replies
  • 4268 views

In redirection activity, of users who are landing on https://www.xyz.com, I want to redirect to this https://www.xyz.com/ abc/#/auth URL.

If i am using the "redirect to URL" option in direct, it is not accepting the redirection URL coz it has Hash Fragment. How to solve this problem.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Gaureshk_Kodag

Hi praveshn57004778 ,

You can try this in custom code option

// Simulate a mouse click:

<script>

window.location.href = "abc/#/auth";

</script>

<script>

// Simulate an HTTP redirect:

window.location.replace("abc/#/auth");

</script>

2 replies

New Participant
November 22, 2019

Hi Gauresh,

The problem with this solution is that it creates a significant amount of flicker. Is there any other optimize way?

Gaureshk_Kodag
Gaureshk_KodagAccepted solution
Employee
November 22, 2019

Hi praveshn57004778 ,

You can try this in custom code option

// Simulate a mouse click:

<script>

window.location.href = "abc/#/auth";

</script>

<script>

// Simulate an HTTP redirect:

window.location.replace("abc/#/auth");

</script>