在我的drupal网站上,需要为所有页面链接https://wwww.example.com摘录一页,如http://www.example.com/resourcesce-marking
答案 0 :(得分:0)
请编辑index.php文件并从以下代码中添加新行。
<?php
// Add new lines - Forwarding client to https protocol when it said your website on http protocol!
if($_SERVER['HTTP_X_FORWARDED_PROTO'] != 'https') {
header("Location: https://example.com");
exit;
}
// End new lines
define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
// Add new line - Change $base_url to absolute URL
$base_url = 'https://example.com/';
// End new line
menu_execute_active_handler();