Skip to main content

Posts

Showing posts from March, 2018

URL Rewrite :: HTTP redirection

Download the relevant URL Rewrite module from this URL https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/using-the-url-rewrite-module Add a new website in IIS Add bindings and enter URL in host name field from where we want user to redirect. Target URL will be added in rules in web.config file Right click on website , add a web.config file in that folder directory and then add below redirect rule in file <?xml version="1.0" encoding="UTF-8"?> <configuration>   <system.webServer>     <rewrite>       <rules>         <rule name="Redirect www" stopProcessing="true">           <match url="(.*)"/>           <action type="Redirect" url="http://www.mysite.com/" redirectType="Permanent" appendQueryString="false"/>         </rule>       </rules>     </re...

Troubleshoot Sitecore

Sitecore Troubleshooting Demos Sitecore Troubleshooting Path Sitecore - High Memory and CPU usage after upgrading to Sitecore 8.1-update-3 ItemAxes and Database Rules Common mistakes when programming with Sitecore pt1 Sitecore index based search Sitecore restart Automatically on Sitecore.NET 7.2 (rev. 140526) Performance tuning CMS Performance Tuning Guide Performance Monitoring Profiling Sitecore CMS Collecting memory snapshots during high CPU and analyzing them MEASURE IF YOU WANT TO GO FASTER Sitecore Measure Pipeline performance and profile processors Performance issues in Sitecore Client when complex security roles structure is used Profiling Types Memory Optimization Effective way to resolve the EventQueue, CPU and memory load related issue Diagnosing memory leaks problem in Sitecore MEMORY OPTIMISATION IN SITECORE Investigating memory issues. High memory usage. High Sitecore memory consumption Tools Log Parser Download Command:...