很抱歉,这可能是一个愚蠢的问题,但我无法让它发挥作用。
我在主域下安装了WordPress,效果很好。此外,我有第二个域指向同一个webroot,但请求 index.html 而不是默认的 index.php 。我尝试了几乎所有我能在网上找到的东西,但似乎没有任何效果。编辑 .htaccess 不起作用,当我尝试使用像这样的重定向创建index.html时
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1;url=http://mainDomain.com/index.php">
<script type="text/javascript">
window.location.href = "http://mainDomain.com/index.php"
</script>
<title>Page Redirection</title>
</head>
<body>
If you are not redirected automatically, follow the <a href='http://mainDomain.com'>link to example</a>
</body>
</html>
WordPress总是调用 index.html 而不是index.php,我有一个无限循环。
有人可以帮忙吗?