Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I also believe that we all can contribute to each other's growth by sharing knowlege and experiences. I would love to take my skills and help people around the world solve problems..."

Geography

Where in the world do Tek-Tips members come from?
tyutghf (TechnicalUser)
8 Jun 12 19:06
Our host has changed the server from using ISAPI to iis rewrites, so I need to transfer my .htaccess to a web.config.

I have done so via some tutorials I found on the web but am getting a 500 Internal server error when running with the web.config. Can someone see what I have done wrong?

Thanks

CODE

<configuration>
<system.webServer>


<rewrite>
<rules>
<rule name="Rewrite to places.asp">
<match url="^/([0-9]+)/([_0-9a-z-]+)" />
<action type="Rewrite" url="places.asp?county={R:1}&place={R:2}" />
</rule>
<rule name="Rewrite to directions.asp">
<match url="^directions/([0-9]+)/([_0-9a-z-]+)" />
<action type="Rewrite" url="directions.asp?county={R:1}&place={R:2}" />
</rule>
<rule name="Rewrite to tellafriend.asp">
<match url="^tellafriend/([0-9]+)/([_0-9a-z-]+)" />
<action type="Rewrite" url="tellafriend.asp?county={R:1}&place={R:2}" />
</rule>
<rule name="Rewrite to reviews.asp">
<match url="^reviews/([0-9]+)/([_0-9a-z-]+)" />
<action type="Rewrite" url="reviews.asp?county={R:1}&place={R:2}" />
</rule>
</rules>
</rewrite>



</system.webServer>
</configuration>

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close