Now that you have your OpenMenu, and received the free website site we give you, you want to redirect mobile visitors to your website to your restaurant’s mobile site on OpenMenu that stays in sync with all your menu changes.

Sample: https://openmenu.com/restaurant/sample

The address for your restaurant’s mobile site is in the format of: https://openmenu.com/restaurant/OpenMenu_ID . If you’re having trouble identifying your mobile site’s URL use our Search tool to locate your restaurant.

Redirecting from an existing page:

Now that you can access your complimentary mobile site you can safely redirect your mobile site to our page. Using one of the codes below your mobile site can easily, and properly, perform a redirect.

PHP

<?php
  header ("HTTP/1.1 301 Moved Permanently");
  header ("Status: 301 Moved Permanently");
  header ("Location: https://openmenu.com/restaurant/OPENMENU_ID"); exit(0);
?>
Javascript
<script type="text/javascript">
<!--
window.location = "https://openmenu.com/restaurant/OPENMENU_ID";
//-->
</script>