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.
我有一个带有子域的域,被一群人使用......问题是我无法理解正确的人正在使用哪些子域。所以我的问题是:如果子域正在使用中,如何使用消息(在所有子域中)向用户执行带有消息的 javascript 警报,以便向我发送电子邮件......抱歉我的英语不好和不好的解释。
尝试使用(在 .htaccess 文件中):
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^subdomain.maindomain.com$ [NC] RewriteRule ^(.*)$ message.php [R=301,NC,L]
对于每个子域并使 message.php 说出消息。
我不擅长 .htaccess 但它可能有用。
此代码会在您使用它时禁用子域,因此请确保将其恢复。