1
存在我想做某事像這一點,如果子域是網址:路線,只有當子域網址
http://example.com/ -> index.php
http://hello.example.com/ -> profile.php?subdomain=hello
http://whatever.example.com/ -> profile.php?subdomain=whatever
http://example.com/world -> world.php
http://example.com/world/test -> world.php?id=test
http://example.com/sth -> sth.php
http://example.com/sth/test2 -> sth.php?id=test2
http://hello.example.com/world/test -> profile.php?subdomain=hello
而對於其他的文件:
RewriteRule ^dodaj_artykul dodaj_artykul.php [L]
RewriteRule ^logowanie logowanie.php [L]
RewriteRule ^rejestracja rejestracja.php [L]
RewriteRule ^wyloguj wyloguj.php [L]
RewriteRule ^kategorie/([^-]+)$ kategorie.php?id=$1 [L]
RewriteRule ^kategorie/$ kategorie.php [L]
RewriteRule ^kategorie$ kategorie.php [L]
如果子域存在,一切都被路由到 「?profile.php子域=你好」 如果不存在正常的 「重寫規則^ kategorie /([^ - ] +)?$ kategorie.php ID = $ 1 [L]」
嗯,我有「500內部服務器錯誤」 – xtr3mist
@ xtr3mist對不起,請參閱上面的編輯。 –