Printer Friendly Version
Email this thread to a friend
|
Featured Web Site Template |
|
There are 0 guests and 1 members in the forums right now.
Reflects user activity within the last 5 minutes
|
|
| Member |
Message |
easytraveller
Joined: Aug 02, 2007
# Posts: 4
|
Posted: 2008-Sep-03 13:52
I found out that there is a very powerful tool in the web called “urlrewriter”, it’s a Open Source URL Rewriter for .NET / IIS / ASP.NET, it’s free and it’s very easy to use (I managed to understand how to install and configure in just few minutes ;-)… And I have been absolutely impressed to see how this “software” is extremely good to implement “URL rewriting” by setting just a simple rule in the web.config file. I installed it on my web site, and I have already tested it for many new URLs such as:
http://www.easytravelgroup.co.uk/easy-links-exchange/travel-and-vacation/hotels-and-motels
To make the URL rewriter working, I downloaded the dll from http://urlrewriter.net
Then I copied the dll in my bin folder and I had to add this lines in my web.config:
<configSections>
<section
name="rewriter"
requirePermission="false"
type="Intelligencia.UrlRewriter.Configuration.Rewr iterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
</configSections>
<system.web>
<httpModules>
<add
type="Intelligencia.UrlRewriter.RewriterHttpModule , Intelligencia.UrlRewriter"
name="UrlRewriter" />
</httpModules>
<customErrors mode="Off"/>
</system.web>
<rewriter>
<rewrite url="~/easy-links-exchange/(.+)/(.+)" to="~/easy-links-exchange/_directoryRewriter.asp?category=$1&linkID=$2" />
</rewriter>
That's fantastic the way that it works!
|
 |
You are not permitted to post messages in this forum or topic, because of one or more of the following reasons:
- You have not yet logged in, or registered properly as a member
- You are a member, but no longer have posting rights.
- This is a private forum, for which you do not have permissions.
If you are a recent member, it's possible that you simply have not yet confirmed your account. Please
check your email for a message entitled 'JimWorld Forums: Confirm Your Account' and follow the instructions
contained within.
If you cannot find this message, click here to Re-Send it.
|
If you are still experiencing problem, please read the
Login Assistance
Article for some advice on what may be causing your login not to work properly.
|
Switch to Advanced Editor and ...
Create a New Topic
or Reply to this Thread
|
|