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.
我有一个类似的网址
www.mydomain.com/mydomain
但是当有人键入 www.mydomain.com 时,上面的内容应该在没有 url 重定向的情况下加载。我怎样才能做到这一点?
提前致谢。
RewriteEngine on RewriteCond %{HTTP_HOST} ^subdomain\.yourdomain\.com RewriteRule ^(.*)$ subdomain/$1 [L,QSA]
另请参阅:Apache mod_rewrite - 从子域重写到主域