尝试使用 htaccess 实现子域。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.
RewriteCond %{HTTP_HOST} ^([a-z0-9]+)\.domain.com(.*)$
RewriteRule ^(.*)$ http://domain.com/index.php?/public_site/main/%1/$1 [L]
</IfModule>
当我输入ahser.domain.com时,浏览器 URL 正在更改。在 RewriteRule 中使用绝对 URL 时,是否有一个 htaccess 选项不让这种情况发生?