Skip to content
Snippets Groups Projects
Commit 53b5c551 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Modified patch #43709 by chx, Eaton et al.: usability improvement: put some...

- Modified patch #43709 by chx, Eaton et al.: usability improvement: put some emphasis on the no trailing slash requirement.
parent 68ced8da
No related branches found
No related tags found
No related merge requests found
......@@ -89,16 +89,18 @@
/**
* Base URL:
*
* The URL to your Drupal installation. It is not allowed
* to have a trailing slash; Drupal will add it for you.
* The URL to your Drupal installation.
*
* 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';
$base_url = 'http://www.example.com'; // NO trailing slash!
/**
* PHP settings:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment