English 中文(简体)
Subdirectory URL 自动吗?
原标题:Subdirectory URL Automatic Rewrite Rule?

I m使用ASP。 NET 4 / VB.NET / IIS 以便建立网络应用。 民间社团将通过“URL”等手段进入网站:

http://url.com/personname

So, for example, here is the urls for Jane Doe, John Doe, and James Doe respectively:

http://url.com/janedo

rel=“nofollow noretinger”>http://url.com/johndoe

rel=“nofollow noretinger”>http://url.com/jamesdoe

我需要把他们(不管名字是什么)带走到违约状态。 接着用 as中的名称部分取出的px页,并用它来对包含Info在内的数据库进行调查。 关于此人,根据这一信息展示了一个个个性化页。

例如,简·多伊访问:

http://url.com/janedo

她被透明地转向违约。 用她的名字(从上面的圆顶上)抽出的灯,并对照数据库对其进行检查。 她认为她以前从未访问过这个地点,她被透明地转而欢迎。 要求她登记账户的牛肉说,“Hello Janes”,......

她接下来访问简讯:

http://url.com/janedo

她被透明地转向违约。 用她的名字(从上面的圆顶上)抽出的灯,并对照数据库对其进行检查。 她认为,她以前曾访问过并创建了一个账户,但她被透明地改用标识。 要求她加入她最后一次制作的认证证书的表格。

最佳回答

首先,您需要rewrite>。 The request to Default.aspx. 根据你的国际数据系统版本(以下简称为7.5国际数据系统),这很简单。 在网上,规则(部分系统:webServer)类似。

<rewrite>
    <rules>
        <rule name="test" enabled="true" stopProcessing="false">
            <match url="^([a-zA-Z]*)$" />
            <action type="Rewrite" url="Default.aspx?u={R:1}" />
        </rule>
    </rules>
</rewrite>

(或您可使用国际会计准则管理人)。 当然,[a-zA-Z]管理标准应当适应你的经营规则,你可能希望允许数量。

这把请求改写到国际空间法研究所内部——在浏览器中看不到任何东西。 现在,你们想要“透明地转移”,这意味着浏览器中的URL应当根据用户是否已经存在而变化。

为此,在Default.aspx中,在你处理请求书背后。 学历

Response.Redirect("Welcome.aspx") or
Response.Redirect("Login.aspx")

视数据库查询结果而定。 如果你不想改变使用服务器的浏览器URL。 转移而不是反应。 转头。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!