Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 htaccess 将我的主域“www.main.com”重定向到“www.main.com/DBS2010”。htaccess 有效,但我的网址更改为“www.main.com/DBS2010”我可以让网址保持为“www.main.com”吗?
htaccess
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www.)?main.com$ RewriteRule ^(/)?$ DBS2010 [L]
您可以为此尝试此代码:
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?main\.com$ [NC] RewriteRule ^$ DBS2010 [L]
这不会将浏览器中的 URL 更改为“/DBS2010”。