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.
我如何重定向something.some.*到something.somevhos
something.some.*
something.some
我尝试了各种重写规则,但没有一个有效,所以没有用粘贴它们..
我的猜测是您正在尝试重定向主机名?我不完全确定您要做什么。
如果我的假设是正确的,那么这样的事情应该适合你:
RewriteCond %{HTTP_HOST} ^something\.some\..*$ RewriteRule (.*) http://something.some/$1 [R=301,L]