我正在使用旧域指向同一服务器作为图像,css和js文件的域,以便根据一些建议(谷歌和ping)改进下载
但我不希望访问者使用旧域浏览我的网站
所以我想保留(没有DNS或任何重定向)oldDomain.com/css/style.css
byt是soembody访问oldDomain.com/items/345
或除img/
css/
和js/
之外的任何网址都应重定向到newDomain.com
答案 0 :(得分:1)
您可以在public class ProductKey
{
public const int ProductKeyLength = 16;
[StringLength(ProductKeyLength, MinimumLength = ProductKeyLength)]
private string _value;
[Required]
[Index(IsUnique = true)]
public string Value {
get
{
var temp = Regex.Replace(this._value, ".{4}", "$0-");
return temp.Trim('-');
}
set { this._value = value.Replace("-", "");}
}
}
的root .htaccess中使用此规则:
oldDomain