URL Redirecting

Solved

URL Redirecting

AVLI
Visitor
2 0 0

Hello!

 

I am trying to set up a URL redirect and it doesn't seem to be working. my current URL is /www.churchav.ca/pages/bosepro. I want to be able to tell people to go to /www.churchav.ca/bosepro and have it redirect to the correct page that has the /pages slug in it. This is my workaround since I can't remove the /pages slug from the URL. I have checked the code but I'm not an expert and don't know how to make this work. I have created a redirect in the URL redirects page for /www.churchav.ca/bosepro to /www.churchav.ca/pages/bosepro. I have also tried simply putting in /bosepro to /pages/bosepro. I discussed this issue with an online chat function with a shopify team member and they directed me here as they could not figure out the issue.

 

Please help!

Accepted Solution (1)

radaevich
Excursionist
12 2 2

This is an accepted solution.

Hello
You can try this

1. Go to Online Store / Themes / Edit Code

2. Find theme.liquid file

3. Add script anywhere

 

<script>

if (window.location.href === "https://www.churchav.ca/bosepro") { window.location.href = "https://www.churchav.ca/pages/bosepro"; }

</script>

If you find our suggestions helpful, please let us know by liking it or marking it as a solution.
Or Buy me coffee or food for my cat ♥

View solution in original post

Replies 2 (2)

radaevich
Excursionist
12 2 2

This is an accepted solution.

Hello
You can try this

1. Go to Online Store / Themes / Edit Code

2. Find theme.liquid file

3. Add script anywhere

 

<script>

if (window.location.href === "https://www.churchav.ca/bosepro") { window.location.href = "https://www.churchav.ca/pages/bosepro"; }

</script>

If you find our suggestions helpful, please let us know by liking it or marking it as a solution.
Or Buy me coffee or food for my cat ♥
AVLI
Visitor
2 0 0

Thank you so much! This works great!