Skip to content

Multi‐tenancy testing (temp page, would be deleted later)

Nikita Voronov edited this page Aug 28, 2023 · 1 revision

Adresářová struktura

V ROOTu vytvoříme tuto adresářovou strukturu:

- hiko.historicka-korespondence.cz
    - index.php
- testtgm.historicka-korespondence.cz
    - .htaccess
- testbrezina.historicka-korespondence.cz
    - .htaccess

Kód

hiko.historicka-korespondence.cz/index.php

<h1>Hello World!!!</h1>

testtgm.historicka-korespondence.cz/.htaccess

# Turn on the rewrite engine
RewriteEngine On

# Redirect requests to the new multi-tenant directory
RewriteRule ^(.*)$ /hiko.historicka-korespondence.cz/$1 [L,PT]

testbrezina.historicka-korespondence.cz/.htaccess

# Turn on the rewrite engine
RewriteEngine On

# Redirect requests to the new multi-tenant directory
RewriteRule ^(.*)$ /hiko.historicka-korespondence.cz/$1 [L,PT]

Testování

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!!!.