Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I redirect a local static html page to an online resource?

I'm writing a small application extension and the only way to include some help is by a local, static html page (like c:\program files\help.htm). I can't use PHP for it. Is there any way to redirect such a page to an online page?

like image 671
RubenGeert Avatar asked Sep 23 '13 08:09

RubenGeert


1 Answers

Sure, you can use html meta tag to instruct the browser to redirect to another page. Put this in your <head>

<meta http-equiv="refresh" content="0; url=http://example.com/"> 

Related question: How to redirect from .html page?

like image 194
Janis Veinbergs Avatar answered Oct 09 '22 14:10

Janis Veinbergs