我在 .htaccess 中有一个将 http 重定向到 https 的代码,但我还想添加一个将index.html页面重定向到另一个 html 页面的代码。有没有办法在.htaccess. 下面提供的代码。
http转https代码
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} =http
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
index.html 到另一个html页面代码
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule ^$ http://example.com/index.php [L,R=301]
MMMHUHU
繁花如伊
相关分类