DavidOverton.com
This site is my way to share my views and general business and IT information with you about Microsoft, IT solutions for ISVs, technologists and businesses, large and small.  
how to make accessing SBS web areas easier, so making the remote web workplace (RWW) access easier, or sharepoint etc

I was having a look at the site on OMPL shaing (mine is up there) and I noticed that my blog had been shared by a few people, so I looked around and came across this from Javier an MVP.

This post from Javier is entitled "Create easier-to-remember URLs for OWA, RWW and even Sharepoint" and it made me realise how great an this idea is.  Just to add to this, I have a 3rd tool to add, which is ISAPI Rewrite, which I use for this site. From Javier's site:

If you are running SBS you must know by now that you need to type http://something.yourdomain.com/exchange or /remote to access OWA or RWW from the internet. One issue that I often encounter is that users forget those URLs are (specially if the are technologically-impaired J).

So, what about giving your users simpler URLs? Like http://webmail.yourdomain.com for OWA and/or http://remote.yourdomain.com for RWW

It is all so simple, go read his blog entry for more.  As I said, he gives two ways to do this, my 3rd is to use ISAPI_rewrite to have lots more control.  For this site, to see how I manage domain re-directs and other changes, this is my simple control document in httpd.ini - and did I mention this is a free tool?

[ISAPI_Rewrite]

# Defend your computer from some worm attacks
RewriteRule .*(?:global.asa|default\.ida|root\.exe|\.\.).* . [F,I,O]
#move people from old blog to new one
RewriteRule (.*)david_overtons_blog_more_technical(.*) $1doverton$2
#provide shortcuts
RewriteRule /wss /blogs/doverton/archive/category/1016\.aspx
RewriteRule /vista /blogs/doverton/archive/category/1003\.aspx
RewriteRule /sbs /blogs/doverton/archive/category/1002\.aspx
RewriteRule /office /blogs/doverton/archive/category/1004\.aspx
RewriteRule /lizzy /photos/doverton/category1018\.aspx

#redirect people from http://ukvistaguy.com to the vista category at uksbsguy.com
RewriteCond Host: ukvistaguy\.com
RewriteRule / http\://uksbsguy.com/blogs/doverton/archive/category/1003\.aspx [I,RP]

ttfn

David


Posted Wed, Jul 5 2006 10:10 AM by David Overton

Comments

Paulie wrote re: how to make accessing SBS web areas easier, so making the remote web workplace (RWW) access easier, or sharepoint etc
on Wed, Jul 5 2006 9:13 PM
Does using this technique have an impact on the validity of certificates?

Add a Comment

(required)
(optional)
(required)
Remember Me?

(c)David Overton 2006-23