如何使用.htaccess调用不同的索引文件?
我需要在我的网站上添加一个链接,我需要加载主页但是使用不同的索引文件(index2.html),但网址为www.mysite.com而不是www.mysite.com/index2.html < / p>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?mysite\.com\index2.html$ [NC]
RewriteRule ^$ /index2.php [L]
以上规则不起作用。
答案 0 :(得分:0)
DirectoryIndex newfile.php newfile.html site-down.php
应该在.htaccess中执行这个技巧
答案 1 :(得分:0)
我认为你所寻找的是不可能的htaccess,它完全基于浏览器..所以在你的index2.html文件中添加到身体,这是HTML5所以我不确定它是否在ie9下工作。< / p>
<script> window.history.replaceState('Object', 'Title', '/'); </script>