今後の URL をlocalhost/test?t=gowthamからlocalhost/test/t/gowthamに変更することはできますか?
私の理解に基づいて、拡張してこれを行うことを考えました
public class Myhandlers : IHttpHandlerFactory
{
public IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated)
{
string s= application.Request.QueryString["t"];
PageParser.GetCompiledPageInstance(url,"/t/"+s, context);
}
}
私は正しい道を進んでいますが、それを達成できませんでしたか? それとも他に方法はありますか?