實際上,主題很簡單,而且答案數百萬次,但不知怎麼的對我無效。 我試圖做的是將「m.domain.com」和「mob.domain.com」重定向到一個文件「domain.com/folder/mobile.htm」 但看起來像任何代碼與我當前的代碼衝突「www」從一開始。將子域重定向到不帶硬編碼的文件網址
我當前的代碼是
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.
RewriteCond %{HTTPS}s ^on(s)|off
RewriteCond http%1://%{HTTP_HOST} ^(https?://)(www\.)?(.+)$
RewriteRule^%1%3%{REQUEST_URI} [R=301,L]
# this is for webmail forward #
RewriteCond %{REQUEST_URI} /mail/?$ [NC]
RewriteRule . /webmail/ [L]
如何我也可以把m和暴民域沒有這個代碼,並沒有硬編碼「domain.com」相沖突?
感謝您的幫助提前。
我的問題,我不熟悉htaccess的編碼。我使用的當前代碼也可以通過搜索找到。經過測試,我開始使用。任何建議歡迎。 – inovasyon