Create Shortcut in SharePoint Document Library

The requirement is to create a Shortcut link inside the SharePoint document library. OK, tried uploading the URL shortcut (.url) file, and got the error message saying “The following file(s) have been blocked by the administrator: URL Shortcut.url”.

Solution: Add “Link to a Document” content type to the document library. Here is how to create shortcut in SharePoint document library:

How to create a Shortcut in the SharePoint Document Library?

1. Go to Library Settings >> Advanced Settings.
shortcut in sharepoint document library
2. Enable the “Allow management of content types” option and click OK
create shortcut in sharepoint library
3. On the Library settings page, click on Content Types and click the “Add from Existing Site content types” link.
create shortcut in sharepoint library
4. Choose “Link to a Document and click on the “Add >” button, then OK.
create shortcut in sharepoint document library
5. Now create a new entry based on “Link to a Document”, Enter the description & URL

sharepoint shortcut in document library

You are done!

sharepoint 2010 shortcut in document library


Drawback: The above method will not work when you move from HTTPS to HTTP and vice-versa.

Workaround: Create a simple HTML page with META REFRESH Tag and upload the html file to the document library.

<html>
<head>
<meta http-equiv="refresh" content="0;url=https://client.company.com/releases.cfm">
</head>
<body/>
</html>

Or you can create an HTML file with little JavaScript which send you to the target URL.

<html>
<head>
<script>
function loadFile()
{
	document.location="https://client.company.com/releases.cfm";
}
</script>
</head>
<body onload="loadFile()">
</body>
</html>

Salaudeen Rajack

Salaudeen Rajack - Information Technology Expert with Two-decades of hands-on experience, specializing in SharePoint, PowerShell, Microsoft 365, and related products. He has held various positions including SharePoint Architect, Administrator, Developer and consultant, has helped many organizations to implement and optimize SharePoint solutions. Known for his deep technical expertise, He's passionate about sharing the knowledge and insights to help others, through the real-world articles!

5 thoughts on “Create Shortcut in SharePoint Document Library

  • Why is this SO difficult to find?! THANK YOU This is one area where sharepoint misses and g-drive wins!

    Reply
  • Thank you very much for posting this – i’ve always wondered how to do this thanks alot

    Reply
  • This was very helpful. My sharepoint site has custom columns that is used on the page that we are adding these links too. Is there a way to ensure that the columns are also filled in or are the options of entering the document name and URL the only options?

    Reply
  • Can you create the shortcut via workflow?

    Reply
  • Thank you very much for posting this – it was very helpful!

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *