Case 1 : Redirect a page to a URL without waiting in PHP. 1 header("Location: index.php"); Case 2 : Redirect a page to an URL after waiting for X seconds in PHP. 1 2 3 4 5 <?php header("Refresh: 5; url=index.php"); echo 'Logged…
基本配置 为了探究nginx的url配置规则,当然需要安装nginx.我使用了vagrant创建了一个虚拟环境的ubuntu,通过apt-get安装nginx.这样就不会污染mac的软件环境.通过vragrant再创建一个项目进行实验.如果不了解vagrant的使用,可以查看Vagrant 虚拟环境利器. /vagrant目录下创建了一个pro用于项目的根目录,同时配置nginx的配置文件(/etc/nginx/sites-enabled/pro.conf) ☁ pro tree . ├── 4…
今天在js代码中加了一句window.location.href(‘url’)希望实现页面的跳转,IE中可以正常使用,但是Firefox却提示window.location is not a function. google以后将代码改为window.location='url' 程序正常执行. 简言之: 下面的格式可以在IE中正常执行,但是不能在Firefox和Chrome中执行: window.location.href("http://stackoverflow.com"); 下…