The Now Platform® Washington DC release is live. Watch now!

Help
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to redirect a portal homepage to another portal homepage

ritaaudi
Tera Contributor

Hi: Can someone please advise how to redirect a portal homepage to another portal homepage. So basically I want users who visit xx.service-now.com/tech to be automatically redirected to xx.service-now.com/sp. What is the best way to do so? Thank you in advance.

1 ACCEPTED SOLUTION

In left navigation go to sites and click on your homepage.


Once you have your homepage go to layout and modify the code.



find_real_file.png


Required code is highlighted. Let me know if you have any queries.


find_real_file.png



Thanks,


Abhishek


View solution in original post

6 REPLIES 6

Abhishek Raj3
Mega Guru

Hi Rita ,



If you are using Cms(content management system) then you can use "window.location.replace("xx.service-now.com/sp");"   in your layout used macro . it will redirect to the location you want.



CODE IN XML :



<script>


window.location.replace("xx.service-now.com/sp");


  </script>



Thanks,


Abhishek


Hi Abhishek: Where would I go to update the layout used macro? Thank you.


In left navigation go to sites and click on your homepage.


Once you have your homepage go to layout and modify the code.



find_real_file.png


Required code is highlighted. Let me know if you have any queries.


find_real_file.png



Thanks,


Abhishek


Hi Abhishek: I just had to tweak it as follows to allow going to /tech for notification links:



  <script>


    if(document.URL.indexOf('incident.do') == -1)


        window.location = '/sp/';


  </script>



Thank you so very much!! I've been spinning my wheels for 24 hrs on this..