我正在学习正则表达式,您认为有人可以帮助翻译以下.htaccess摘录中的逻辑术语吗?
301 RewriteCond %{HTTP_HOST} !^www
302 RewriteCond %{HTTP_HOST} ^([^\.]+)\.([^\.]+)\.([^\.]+)$
303 RewriteCond %{REQUEST_URI} !^.*/(admin|scripts|api)(.*)$ [NC]
304 RewriteCond %{REQUEST_URI} !^.*\.(.*)$ [NC]
305 RewriteRule ^(.*)$ index.php?subdomain=%1&%{QUERY_STRING} [L]