Any way to do this?
Yes.
The link I already posted for you above, leads you to more than one solution.
What I want to do is create a wordpress page that will in turn creat a link on the blog, but I want that link to go to my static website rather than the wordpress page.
Here is a solution that I have used successfully, but you should of course, choose whatever solution is best for you.
1) Create a new empty page template. Name it whatever you want. For this example we’ll call it mywebsite.php. Save your new blank template as mywebsite.php. It must have the .php extension.
2)Open your new blank page template in a plain text editor. Inside of it, paste the following code:
<?php
/*
Template Name: mywebsite
*/
?>
<?php header('Location: https://www.mywebsite.com');
die();
?>
I am told that it is important not to leave any white space in front of the <?php.
3) Now change the template name information to reflect the actual name of your new template, and change the url to reflect where you actually want it to take you when you click on the page.
4) Upload your new page to to your current theme folder. Create a new page on your blog, name it whatever you like, and apply your new page template to the page and publish it.
Now when you click on that page in your header navigation, it will take you to whatever url you put in the template. I’m sure there are several ways to do this. I know this way works because I’ve done it several times… just recently on WP 2.7.1. …and the whole process takes about three minutes.
Good luck to you.