1
是否有可能只的.htaccess做這類重定向:.htaccess的子域重定向
來自:http://domain.com/directory.php?ref=sub
到:http://sub.domain.com/directory.php
如果不是,我需要是什麼?
是否有可能只的.htaccess做這類重定向:.htaccess的子域重定向
來自:http://domain.com/directory.php?ref=sub
到:http://sub.domain.com/directory.php
如果不是,我需要是什麼?
檢查教程
http://blog.gwebtools.com/apache-htaccess-subdomain-redirect-rules/
RewriteEngine On
RewriteBase/
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ([a-z0-9-]+)/? http://$1.domain.com [R=301,NC,L]
與您的域名替換 「domain.com」 的兩個實例。