[gelöst]settings php erweitern
Eingetragen von dimi_mhm (217)
am 29.12.2021 - 18:02 Uhr in
am 29.12.2021 - 18:02 Uhr in
Hi @ all
ich habe heute meine aliasdomain aufgeschacltet nun sagt der Provider ich soll in den
settings.php folgendes einfügen und ich wieß nicht wo und wie genau die Syntax dafür ist. php ist für mich ein schwarzes Loch
hier die Anweisung vom Provider:
Sie müssten allerdings die settings.php noch anpassen und den Parameter trusted_host_patterns entsprechend erweitern, sonst lässt Drupal selbst keinen Zugriff von der Domain zu.
Fehlermeldung beim Aufruf der Seite:
The provided host name is not valid for this server.
kann ich da Hilfe bekommen?
Danke
- Anmelden oder Registrieren um Kommentare zu schreiben
Für eine Seite und einen
am 29.12.2021 - 18:36 Uhr
Für eine Seite und einen alias jeweils mit und ohne www würde es so aussehen.
Nach dieser Stelle ind der settings.php:
/**
* Trusted host configuration.
*
* Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host
* header spoofing.
*
* To enable the trusted host mechanism, you enable your allowable hosts
* in $settings['trusted_host_patterns']. This should be an array of regular
* expression patterns, without delimiters, representing the hosts you would
* like to allow.
*
* For example:
* @code
* $settings['trusted_host_patterns'] = [
* '^www\.example\.com$',
* ];
* @endcode
* will allow the site to only run from www.example.com.
*
* If you are running multisite, or if you are running your site from
* different domain names (eg, you don't redirect http://www.example.com to
* http://example.com), you should specify all of the host patterns that are
* allowed by your site.
*
* For example:
* @code
* $settings['trusted_host_patterns'] = [
* '^example\.com$',
* '^.+\.example\.com$',
* '^example\.org$',
* '^.+\.example\.org$',
* ];
* @endcode
* will allow the site to run off of all variants of example.com and
* example.org, with all subdomains included.
*/
kommt das dann hin:
$settings['trusted_host_patterns'] = [
'^www\.Seite 1\.com$',
'^www\.Seite 2\.de$',
'Seite 2\.de$',
'Seite 1\.com$',
];