Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
Client doesn't show working Https
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="MasterJiq" data-source="post: 403304" data-attributes="member: 69646"><p>Hello,</p><p></p><p>I've making my website redirect to https with PHP code because when I am using web.config, its always appear <strong>'Redirect too many times'</strong>, so seems like my client will never show working https but show https on gray text.</p><p><img src="http://i.imgur.com/5lsW6vk.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p><p>Surely I know, to solve this problems only with https but when I using this web.config, my website always appear <strong>'Redirect too many times</strong>'.</p><p></p><p>This is my web.config, I am on IIS 7.5 (Not working, I need to remove "Name="Redirect to https"" to make it working):</p><p>[CODE]<?xml version="1.0" encoding="UTF-8"?></p><p><configuration></p><p> <system.webServer></p><p> <rewrite></p><p> <rules></p><p> <clear /></p><p> <rule name="Redirect to https" stopProcessing="true"></p><p> <match url=".*" /></p><p> <conditions></p><p> <add input="{HTTPS}" pattern="off" ignoreCase="true" /></p><p> </conditions></p><p> <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" /></p><p> </rule></p><p> <rule name="Imported Rule 1-1"></p><p> <match url="^badge-imaging/badge/([^/]+)" ignoreCase="false" /></p><p> <action type="Rewrite" url="/badge-imaging/badge.php?badge={R:1}" appendQueryString="false" /></p><p> </rule> </p><p> </rules></p><p> </rewrite></p><p> <httpErrors></p><p> <remove statusCode="404" subStatusCode="-1" /></p><p> <remove statusCode="403" subStatusCode="-1" /></p><p> <error statusCode="403" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" /></p><p> <error statusCode="404" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" /></p><p> </httpErrors></p><p> </system.webServer></p><p></configuration></p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="MasterJiq, post: 403304, member: 69646"] Hello, I've making my website redirect to https with PHP code because when I am using web.config, its always appear [B]'Redirect too many times'[/B], so seems like my client will never show working https but show https on gray text. [IMG]http://i.imgur.com/5lsW6vk.png[/IMG] Surely I know, to solve this problems only with https but when I using this web.config, my website always appear [B]'Redirect too many times[/B]'. This is my web.config, I am on IIS 7.5 (Not working, I need to remove "Name="Redirect to https"" to make it working): [CODE]<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <clear /> <rule name="Redirect to https" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" /> </rule> <rule name="Imported Rule 1-1"> <match url="^badge-imaging/badge/([^/]+)" ignoreCase="false" /> <action type="Rewrite" url="/badge-imaging/badge.php?badge={R:1}" appendQueryString="false" /> </rule> </rules> </rewrite> <httpErrors> <remove statusCode="404" subStatusCode="-1" /> <remove statusCode="403" subStatusCode="-1" /> <error statusCode="403" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" /> <error statusCode="404" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" /> </httpErrors> </system.webServer> </configuration> [/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Client doesn't show working Https
Top