Как установить базовый URL-адрес в drupal

Где я могу установить базовый URL-адрес для сайта drupal. В настоящее время, когда я захожу на сайт на моем локальном хосте, он перенаправляется на исходный сайт. Пожалуйста, помогите мне.

Я попытался установить $ base_url в sites / default / settings.php

Вот часть, где я установил базовый URL

/**
 * Base URL (optional).
 *
 * If you are experiencing issues with different site domains,
 * uncomment the Base URL statement below (remove the leading hash sign)
 * and fill in the URL to your Drupal installation.
 *
 * You might also want to force users to use a given domain.
 * See the .htaccess file for more information.
 *
 * Examples:
 *   $base_url = 'http://www.example.com';
 *   $base_url = 'http://www.example.com:8888';
 *   $base_url = 'http://www.example.com/drupal';
 *   $base_url = 'https://www.example.com:8888/drupal';
 *
 * It is not allowed to have a trailing slash; Drupal will add it
 * for you.
 */
# $base_url = 'http://www.example.com';  // NO trailing slash!
$base_url = 'http://localhost/mysite';  // NO trailing slash!
6
задан Martijn Pieters 12 May 2014 в 15:19
поделиться