301 重定向完整网址

问题描述 投票:0回答:1

如何创建重定向,以便 http://fullurl/store 重定向到 https://fullurl/store

我是在 htaccess 还是 robots 中执行此操作?

.htaccess robots.txt http-redirect
1个回答
0
投票

robots.txt
仅用于告诉搜索引擎机器人和其他爬虫如何处理您的URL结构,与重定向用户无关。

要在站点上强制使用 HTTPS,请将以下内容添加到

.htaccess
的 Web 根目录中的
fullurl
文件中(或在
store
的根目录中仅将该目录重定向到 HTTPS):

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
© www.soinside.com 2019 - 2024. All rights reserved.