跳转方法还有以下几种写法:
使用JavaScript进行跳转:
window.location.href = "/h5/#/?fromUrl=" + encodeURIComponent(fromUrl);
使用HTML的meta标签进行跳转:
<meta http-equiv="refresh" content="0;url=/h5/#/?fromUrl=<?php echo urlencode($fromUrl); ?>">
使用HTTP状态码进行跳转:
header("HTTP/1.1 302 Found");
header("Location: /h5/#/?fromUrl=" . urlencode($fromUrl));
exit;
以上是常用的几种跳转方法,根据具体需求选择适合的方式进行跳转。