I'm studying the documentation to understand the d...
# ask-questions
c
I'm studying the documentation to understand the details about the metrics and feature-flags to assemble the reports, but it's not clear to me how to implement the split between different urls.
f
Hi Denis - do you mean URL redirects?
oh, you do - we’re working on improving this for the next release
c
Hi @fresh-football-47124
Well, I'll break it down: I need to do an A/B test with two totally different pages in html and with different urls, for example: /page1.html and the other /page2.hhtml and I would like to use GrowthBook to split the traffic equally between the two. I followed the documentation and was able to set up the experiment from the dashboard normally, but I need this split between these two urls. Another user recommended me to use "feature flags" to set a different window.location.href
Would that be the best alternative? And can I run the experiment on only one url of my site from the dashboard or do I need to configure the call script only on the url I want to split? For example, I want to split only the traffic that arrives at the initial_test_page.html url to the other urls above.
f
you can do the experiment splitting on the server side, if you have access, to choose the url to send users to, or you can send everyone to page 1, and then send 50% of the traffic to page 2 (if you’re okay with a quick redirect). How you do the splitting is up to you, but using feature flags allows you to have a nice UI for it.
🙌 1
you could do the splitting inline as well