I'm attempting to create a Google Plus redirect like this... www.domain.com/+

I have created a folder named "+" with a simple default.html file inside. Default.html is a default document and it contains a simple JS redirect. I get a 404 like the folder and file do not exist. Very strange!

The plus character appears to be valid for folder names so I'm stumped. Any ideas?

Thanks

link|improve this question
Just curious, does www.domain.com/%2B work? – pst Nov 12 '11 at 5:29
And, can you access say, a "Hello World" HTML file in said + folder? (e.g. does this question really have anything to do with either JavaScript or HTML?) – pst Nov 12 '11 at 5:31
.../%2b didn't work and it is currently setup as hello world for troubleshooting. No luck yet. You're right about the js and html tags. I was enjoying the tag adding process a little too much I guess. – Joe Hakooz Nov 12 '11 at 6:37
feedback

2 Answers

up vote 1 down vote accepted

How about a nice 301 redirect in a web.config:

<configuration>
    <system.webServer>
        <security>
            <requestFiltering allowDoubleEscaping="true" />
        </security>
    </system.webServer>
    <location path="+">
        <system.webServer>
        <httpRedirect enabled="true" destination="http://plus.google.com/{userprofileid}" httpResponseStatus="Permanent" />
        </system.webServer>
    </location>
</configuration>

Edit: I allowed double escaping which disables IIS7's interpolation of a + as a space. Solution obtained from: http://www.ifinity.com.au/Blog/entryid/60/404-error-in-iis-7-when-using-a-url-with-a-plus-sign-in-the-path

link|improve this answer
I may end up using this or a URL rewrite, but I was hoping to share a simple technique for the technically challenged. – Joe Hakooz Nov 12 '11 at 6:47
Fair enough. I wish I knew of the server-side answer to your dilemma. Thanks for the +1. – Jason T Featheringham Nov 12 '11 at 6:52
1  
The oshineye.com/+ example works with JS disabled so maybe it can only be done with web.config or equivalent technique. Asking Google this question proved difficult given the keywords involved. – Joe Hakooz Nov 12 '11 at 6:56
Go to webconfs.com/http-header-check.php and input "oshineye.com/+" He is definitely using a 301 redirect on the server side. – Jason T Featheringham Nov 12 '11 at 6:59
1  
@JoeHakooz: Notice the edit I made above. This turns off IIS7 escaping, including the interpolation of a + as a space. This should work for you, but read the source link above for potential security issues. – Jason T Featheringham Nov 13 '11 at 23:33
show 4 more comments
feedback

In IIS7, by default, + is often times interpolated as a space. IIS7 may allow for folders named +, but the URL processor is interpolating it first to a space.

See http://www.ifinity.com.au/Blog/entryid/60/404-error-in-iis-7-when-using-a-url-with-a-plus-sign-in-the-path for a workaround, but this potentially opens up security flaws.

link|improve this answer
This guy seems to have made it work... www.oshineye.com/+ – Joe Hakooz Nov 12 '11 at 6:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.