誰かが次の擬似コードをHeliconTechのISAPI_Rewriteモジュールが理解できるコードに変換するのを手伝ってもらえますか?
if (domain == something.com OR domain == www.something.com)
{
// The rules inside this scope will only apply to the domain:
// something.com / www.something.com
// This should match "something.com/test" and/or "www.something.com/test"
RewriteRule /something /something/something.aspx
}
if (domain == test.com OR domain == www.test.com)
{
// The rules inside this scope will only apply to the domain:
// test.com / www.test.com
// This should match "test.com/test" and/or "www.test.com/test"
RewriteRule /test /test/test.aspx
}
ドキュメントは私には非常に混乱しています。
ありとあらゆる助けをいただければ幸いです。