REMINDER
Please be respectful of all AppDragers! Keep it really civil so that we can make the AppDrag community of builders as embracing, positive and inspiring as possible.
Site redirect
-
There doesn't appear to be a way to redirect to an external site, but I need to do this from the main landing page. I attempted to use html script to do it but nearly made it to where the appdrag site itself wouldn't work... any solution for this?
Thanks!
-
Hi,
I don't understand what was your issue by doing it through an HTML Script?
If you want to do it globally you can insert it from your project dashboardAnd do
<script> window.location.href = "https://yourwebsite.com"; </script>
-
@Wassim said in Site redirect:
<script>
window.location.href = "https://yourwebsite.com";
</script>thanks I was trying with this method:
<meta http-equiv="Refresh" content="0; url='https://website.url'" />but it caused some issues.
Thanks again