Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
Ranked #107.41K
~5K People Reached
Favorite Forums
Member Avatar for OxyDrim

<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Redirection Https" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="^OFF$" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" /> </rule> <rule name="REWRITE_TO_HTML" stopProcessing="true"> <match url="^(.+).html$" /> <conditions logicalGrouping="MatchAll" /> <action type="Redirect" url="{R:1}.sn" /> </rule> <rule name="REWRITE_TO_PHP" stopProcessing="true"> <match url="^(.+).php$" /> <conditions logicalGrouping="MatchAll" /> <action type="Redirect" …

Member Avatar for Punitha_1
0
5K