Answered by:
default.aspx redirect to SitePages/Home.aspx?

Question
-
We are upgrading from SharePoint 2007 to SharePoint 2013 version. In new SharePoint 2013 version default page always goes to "siteurl/SitePages/Home.aspx", but users already have links "siteurl/default.aspx".
So now how can redirect them when they hit "siteurl/default.aspx" and redirect them to "siteurl/SitePages/Home.aspx"?
ItsMeSri SP 2013 Foundation
Friday, January 23, 2015 3:26 PM
Answers
-
Hi Sri,
Not sure if it's suitable for your requirement in this case, have you tried to copy the "Home.aspx" page and replace the default.aspx page(back up the orginal default.aspx) in siteurl foot folder, then set it as site default page as users have saved?
Please go to the siteurl root folder where default.aspx is located in with SharePoint Designer 2013, then rename the default.aspx to another name, then copy the "siteurl/SitePages/Home.aspx" to site root folder location, then rename it as "default.aspx" and set it as default site page.
Thanks,
Daniel Yang
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
Daniel Yang
TechNet Community Support- Edited by star.wars Monday, January 26, 2015 9:49 AM
- Proposed as answer by Wendy DZMicrosoft contingent staff Monday, February 9, 2015 10:20 AM
- Marked as answer by Wendy DZMicrosoft contingent staff Tuesday, February 10, 2015 10:27 AM
Monday, January 26, 2015 9:46 AM
All replies
-
hello Sri,
You can try adding a redirect on "siteurl/default.aspx" like:
<html>
< head>
<title>Your Page Title</title>
<meta http-equiv="refresh" content="0; url=siteurl/SitePages/Home.aspx" />
< /head>
< body>
< /body>
< /html>Please Mark Answered if my reply solves your problem. Thanks!
Jeff Thai
Technical Solutions Architect, AvePoint
http://www.AvePoint.com- Proposed as answer by Sudip Misra Friday, January 23, 2015 9:20 PM
Friday, January 23, 2015 3:49 PM -
Hi ItsMe, to go along with Jeff's answer, you can use his code and save it as a ".html file." Place that file in a library somewhere. Then add a content editor to the ""siteurl/default.aspx" page. Edit the content editor and put in the URL of that html file in the "content link" field.
cameron rautmann
Friday, January 23, 2015 4:38 PM -
Hi Sri,
Not sure if it's suitable for your requirement in this case, have you tried to copy the "Home.aspx" page and replace the default.aspx page(back up the orginal default.aspx) in siteurl foot folder, then set it as site default page as users have saved?
Please go to the siteurl root folder where default.aspx is located in with SharePoint Designer 2013, then rename the default.aspx to another name, then copy the "siteurl/SitePages/Home.aspx" to site root folder location, then rename it as "default.aspx" and set it as default site page.
Thanks,
Daniel Yang
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
Daniel Yang
TechNet Community Support- Edited by star.wars Monday, January 26, 2015 9:49 AM
- Proposed as answer by Wendy DZMicrosoft contingent staff Monday, February 9, 2015 10:20 AM
- Marked as answer by Wendy DZMicrosoft contingent staff Tuesday, February 10, 2015 10:27 AM
Monday, January 26, 2015 9:46 AM -
try these links
http://sharepoint.stackexchange.com/questions/51604/immediate-redirect-page-in-sharepoint
http://sharepoint.stackexchange.com/questions/18077/sitepages-link-redirects-to-home-page
http://sharepoint.stackexchange.com/questions/31804/redirect-default-aspx-or-change-default-landing-to-page-in-layouts-folder
use meta tags and use url attribute.
---------------------------------------------------------------------------------------------------------------------------
Please mark as answer if you find it useful else vote for it if it is close to answer..happy sharepointing
Monday, January 26, 2015 1:23 PM