-
Notifications
You must be signed in to change notification settings - Fork 0
Multi‐tenancy testing (temp page, would be deleted later)
Nikita Voronov edited this page Aug 28, 2023
·
1 revision
V ROOTu vytvoříme tuto adresářovou strukturu:
- hiko.historicka-korespondence.cz
- index.php
- testtgm.historicka-korespondence.cz
- .htaccess
- testbrezina.historicka-korespondence.cz
- .htaccess
<h1>Hello World!!!</h1>
# Turn on the rewrite engine
RewriteEngine On
# Redirect requests to the new multi-tenant directory
RewriteRule ^(.*)$ /hiko.historicka-korespondence.cz/$1 [L,PT]
# Turn on the rewrite engine
RewriteEngine On
# Redirect requests to the new multi-tenant directory
RewriteRule ^(.*)$ /hiko.historicka-korespondence.cz/$1 [L,PT]
Nyní když uživatel zadá do prohlížeče adresu testbrezina.historicka-korespondence.cz
, tak by se mu měla zobrazit stránka s Hello World!!!
.
Stejně tak když uživatel zadá do prohlížeče adresu testtgm.historicka-korespondence.cz
, tak by se mu měla taky zobrazit stránka s Hello World!!!
.