I've just gotten started with sharepoint( moss 2007 ) and created my first sharepoint site. My team is using the site and when I set it up the url was something like ( http:\myserv:40567\mysite\site\index.html ). I want to make the url prettier by dropping the port number.

How do I do this?

I've read tutorials on using access mapping, but it doesn't seem to work.

link|improve this question

0% accept rate
feedback

migrated from stackoverflow.com Dec 14 '09 at 19:21

This question came from our site for professional and enthusiast programmers.

3 Answers

You need to either recreate or do the smart thing and extend the Web App. By Extending it you will allow it to be available on another url, where you can put it back on port 80. If you recreate it, just save the site collection via stsadm and restore it on the new Web Abb.

Option 1: Central Admin -> App Management -> Create or Extend Web Application Choose Extend and the existing web app, then give it a new URL & authorization method if needed

Option 2:stsadm -o backup -url "your url" -filename "somefile" stsadm -o restore -url "new url" -filename "somefile"

as far as DNS goes, if the url is the machine name then no. If it is not the machine name then you need a host header and a dns entry to point to the static IP of the machine.

link|improve this answer
feedback

The easiest (and most standard!) way is to put sharepoint on port 80. This should also probably be on ServerFault.

link|improve this answer
feedback

This is the original poster. Will I need to do anything with DNS so that my Intranet users will see it?

link|improve this answer
You can link your stackoverflow account to serverfault and that way you will be able to edit your original question. – Marcin Dec 14 '09 at 20:20
You can do one thing to add a new url without the port number. You can add a host header to your application in IIS and update the DNS to this new URL. Also, you have to update the "Alternate access mappings". – jaloplo Dec 28 '09 at 7:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.