我想在网站中放置一个 .html 登录页面。我想要的是当用户访问时www.mydomain.com
,他们将被重定向到 html 登录页面(我已将其命名为index.html
)。然后可以点击指向index.php
查看主站点的链接www.mydomain.com/index.php
。
.htaccess
到目前为止,一直在尝试尝试但没有成功(也许我的重写规则是错误的)。这是.htaccess
文件的内容:
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .htm .html .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ /index.htm [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress