Redirect to different pages after log in

Hi!

I have a store that I have different types of customers (retail, normal).

I want to redierct them to different pages after they log in.

I have tried this.

Added this code to theme.liquid:

{% if page.url == nil %}  
  	{% if customer %}
    	{% if customer.tags contains 'retailer' %}
    		
      {% endif %}
    {% endif %}
  {% endif %}

But the page keeps reloading after log in.

Tried to change {% if page.url == nil %} to {% if page.url == ‘/’ %} but nothing happened then (Not even trying to reload or direct to other location.

Any idea?