I am trying to get my website to redirect to
www.domain.tld/folder/
from
www.domain.tld/folder/index.php?params=blah¶m2=etc
I have tried:
header("Location: /")
But all it does is redirect me to
www.domain.tld
Does anyone know how to redirect properly to just the folder?
header('Location: http://www.domain.tld/folder/')?header("Location: /folder/")then