Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IIS Windows server using IIRF4 rewrite ISAPI
#1
I know it's a shot in the dark but i really was wondering if someone could help me out to try and figure out some Rules that will work.

I'd like to use fancy urls but cannot seem to get the rules right. I've seen a plugin for web.config but cannot get it to work. Always get Error 500 when I use a web.config on my Windows Host.

I have Getsimple 3.2.3 installed and a site configured to use Fancy Urls.

Has anyone experience in trying to get this to work?

Thank you in advance.
Keeping it simple means making progress!!
Reply
#2
Then I have a IIS webserver too
but frankly I never tried to use fancy-urls because it's too tricky to me.
Anyway about your problem

take a look at this...
http://iirf.codeplex.com/discussions/277490
it is for joomla but you could converti it

Let me know

(2013-11-01, 11:15:34)xrmarcis Wrote: I know it's a shot in the dark but i really was wondering if someone could help me out to try and figure out some Rules that will work.

I'd like to use fancy urls but cannot seem to get the rules right. I've seen a plugin for web.config but cannot get it to work. Always get Error 500 when I use a web.config on my Windows Host.

I have Getsimple 3.2.3 installed and a site configured to use Fancy Urls.

Has anyone experience in trying to get this to work?

Thank you in advance.
My website made with GetSimple CMS is

Arte & Società
www.artesocieta.eu

An indipendent website about Italian Contemporary Visual Arts
Reply
#3
Too late for the OP, but this is my web.config to get pretty urls working on IIS.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="rewriteurls" patternSyntax="Wildcard">
<match url="*" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?id={R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Reply
#4
Better Late Than Never =D


[quote='The_Shopkeeper' pid='43360' dateline='1393694469']
Too late for the OP, but this is my web.config to get pretty urls working on IIS.
My website made with GetSimple CMS is

Arte & Società
www.artesocieta.eu

An indipendent website about Italian Contemporary Visual Arts
Reply




Users browsing this thread: 1 Guest(s)