输入要在数据库上搜索的域名,无论域名是上是下,只要alpha是匹配的。
举例说明。如果我输入'hOTmAIL.Com‘,数据库中的'hotmail.com’。它仍然找到了域名'hotmail.com‘。
cursor E_info is select Email_Address from broker
where REGEXP_LIKE (substr(Email_Address, instr(Email_Address,'@')+1), old_email);
我有下面的代码,这些代码应该同时适用于域名和子域名重定向到https。
但是,实际上,它将所有重定向到主域名。
举例说明。
Main domain - example.com and www.example.com
Sub Domain - aa.example.com and www.aa.example.com
这是我的密码..。
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(aa|bb)\. [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_