Added that to the config and then the attached screenshots are the results.
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
- Previous 10 entries
- 1
- Page 22(current)
Mentioning redirect made me think, so I went to check.
We have this rule in our IIS web.config:
<rule name="SilverStripe Clean URLs" enabled="true" stopProcessing="true">
<match url="^(.*)$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="sapphire/main.php?url={R:1}" appendQueryString="false" />
</rule>
Which we had to do initially for the admin backed to actually work.
Did some fiddling and found that changing this:
<action type="Rewrite" url="sapphire/main.php?url={R:1}" appendQueryString="false" />
to this:
<action type="Rewrite" url="sapphire/main.php?url={R:1}" appendQueryString="true" />
Worked perfectly!
We are back up and running now!
Thanks for the help!
Cool, thanks for coming back and posting the answer!
- Previous 10 entries
- 1
- Page 22(current)