How to redirect to the community
This may be a dumbe question but when I go to https://community.start-ops.com.mx, I get the home page. I don't wat to have pages here, I want the subdomain to be only for the community plugin.
I tried redirecting but it didn't work. Am I doing something wrong?
How do you have your DNS set up? It should default to https://community.start-ops.com.mx/portal/
And/or you could create a "homepage" that has a redirect to https://community.start-ops.com.mx/portal/
If you use Fluent Snippets (or something like that):
<script>
window.location.replace('https://community.start-ops.com.mx/portal/');
</script>
If you need to add it in a block:
<script>
window.addEventListener('load', function() {
window.location.replace('https://community.start-ops.com.mx/portal/');
});
</script>
PS I didn't test but this is what I was thinking off the top of my head.
Wendy ShoefΒ Thanks a lot! I think I see the mistake aI was making. Redirecting the homepage should be enough