I have a blog on a wiki page (wiki version 1.13.1 r4310) and I have converted my blogs to a sharepoint server.
My question is now that many folks have my wiki blog bookmarked (I hope) I'd like to redirect folks automatically from my wiki blog to the sharepoint.
I have tried the commands
#REDIRECT [[
https://sharepoint.foo.bar/blog]]
and the script
<script>
document.location = "
https://sharepoint.foo.bar/blog";
</script>
Neither of these do the redirect. They bring up a page with a link and if you click on the link it takes you to my new blog site.
the script also keeps getting parsed by wiki to be the <script> notation for <script>, even though I do type the text in the Wikitext mode.
RewriteEngine on
RewriteRule ^/~(.+) http://newserver/~$1 [R,L]