我已将HTML文件上传到我的网站。现在,当我们进入www.mywebsite.com时,我需要找到一种方法将用户重定向到Home.html页面 我试图在htaccess中使用它,但它不起作用,我不确定它是否正确
RewriteEngine On
#if request is mywebsite.co.uk/something OR
RewriteCond %{HTTP_HOST} ^mywebsite\.co.uk$ [OR]
# or www. mywebsite.co.uk/something
RewriteCond %{HTTP_HOST} ^www\.mywebsite\.co.uk$
# but not mywebsite.co.uk/Home.html
RewriteCond %{REQUEST_URI} !^/Home.html/
#change it to mywebsite.co.uk/Home.html/something
RewriteRule (.*) /Home.html/$1 [R=301]
答案 0 :(得分:0)
删除您的代码并仅将其设为@ .haccess
文件:
DirectoryIndex Home.html
答案 1 :(得分:0)
确保.htaccess文件位于您要更改index.html文件的目录中