Mono Support MONOX doesn;t seem to have a 404 page. 

Viewed 41683 time(s), 7 post(s), 1/29/2014 9:09:28 AM - by sonap
1/29/2014 9:09:28 AM
475 Reputation 52 Total posts

Hello,

I' ve noticed that MonoX doen't redirect to a 404 page when link doesn;t exist, as seen here http://monox.mono-software.com/jskdfj

Could you tell me how it can be implemented the right way in MonoX?

1
1/29/2014 9:15:26 AM
2793 Reputation 345 Total posts

even stranger is that on Mozilla and Chrome it doesn't show the default browser page for 404 http error, but in IE11 it does show the page not found message of the web browser

2
1/29/2014 9:41:18 AM
15993 Reputation 2214 Total posts

We will check the issue and get back to you.

Thanks

3
1/29/2014 12:52:40 PM
15993 Reputation 2214 Total posts

We have fixed this issue, fix will be pushed with the new release (few days).

Thanks

4
10/20/2015 11:42:30 AM
1429 Reputation 151 Total posts

khorvat, hello,
 

Can you share solution for us ? We have sam problem on our site; if  you type www.mydomain.com/something
 

 if (something is not meaning or not match any url ,  Can we redirect it homepage ? Default.aspx )

5
10/20/2015 5:09:00 PM
2793 Reputation 345 Total posts

at http://social.clipflair.net we had fixed that (e.g. try http://social.clipflair.net/somepage)

judging from the version control at http://clipflair.codeplex.com, I think you need the following at web.config (search for the respective sections)

    <!-- indicates if error page should show detailed error message output for non administrator users -->
    <add key="ShowDetailedErrorsForNonAdmin" value="False" />

and also make sure you have this

    <!--<httpErrors existingResponse="PassThrough" />-->
    <httpErrors errorMode="Custom" existingResponse="Replace">
        <remove statusCode="404" subStatusCode="-1" />
        <error statusCode="404" path="/ErrorPages/404.aspx" responseMode="ExecuteURL" />
    </httpErrors>

you can also grab our web.config from http://clipflair.codeplex.com/SourceControl/changeset/view/07b7f3c138b8#Server/ClipFlair.Social/web.config and use WinDiff or CodeCompare to compare with yours. Mind you though we're using MonoX v4.9.40.4845, so it might not be a total match in available entries with yours if you use different version of MonoX

6
10/20/2015 5:31:22 PM
1429 Reputation 151 Total posts

It's works. perfecti thansk you very much

7
This is a demo site for MonoX. Please visit Mono Software for more info.