2

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.

user29116
  • 121
  • 1
  • 3

2 Answers2

1

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.

chris.w.mclean
  • 155
  • 4
  • 13
0

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

popester
  • 101
  • 1