我在 domain.com 中有 subdomain.domain.com,当我在浏览器中键入 subdomain.domain.com 时,URL 写为http://subdomain.domain.com/%20//subdomain.domain.com并且我有 .像这样的htaccess:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ www.jubelmart.com/index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
我可以得到帮助吗?