Before we get started... .htaccess files can be tricky. They can cause all of the folders below them to go wacko. Be careful when you're editing these. Make backups of the file if you are editing an existing file.
If you do make a redirect please tell alexey.lazar@mnsu.edu. We're trying to keep track of these so we can eliminate them from our site in the future (after enough time has passed.)
Note: destination can be full or root relative
RewriteEngine on
RewriteRule ^$ /its/ [L,R=permanent]
RewriteRule ^index.html$ /its/ [L,R=permanent]
Note: destination should be full or root relative
RewriteEngine on
RewriteRule ^olddoc.html$ /its/newdoc.html [L,R=permanent]
Note: destination should be full or root relative
RewriteEngine on
RewriteRule ^.*$ /its/ [L,R=permanent]
Note: destination should be full or root relative
RewriteEngine on
RewriteRule .*/other /its/data/ [L,R=permanent]
RewriteRule (.*)$ /its/data/$1 [L,R=permanent]