skip to Main Content

Get Original URL before being redirected by IIS – SEO

Using IIS, we're currently redirecting URLs. But to display canonical URL's in the site for SEO, we want the original URL. Example: Actual URL: www.example.com/topsellers/mobiles Redirected URL: www.example.com/products?type=mobiles IIS Rewrite Rules: <rule name="url1" stopProcessing="true"> <match url="topsellers/([a-zA-Z0-9]+)" /> <action type="Rewrite" url="products?type={R:1}"…

VIEW QUESTION

Enabling Cors in local IIS – Jquery ajax

I've tried following the steps from Microsoft https://learn.microsoft.com/en-us/aspnet/web-api/overview/security/enabling-cross-origin-requests-in-web-api I committed the codes I created in GitHub link below https://github.com/RGatchalian/StackOverflowQuestions/tree/master/ASPNET/EnablingCors Just to explain, Front-end folder is the call from Javascript to the WebApi and TestingCors folder is the WebApi. I'm currently…

VIEW QUESTION

URL friendly ASP Classic and Isapi Rewrite – Plesk

The point is, I can access an address dominio.com/modulo/id/titulo and it rewrites to dominio.com/default.asp?link=artigo&id=123&titulo=teste, but my question is whether I can do the reverse process, i.e. go to dominio.com/default.asp?link=artigo&id=123&titulo=teste and it changes to dominio.com/modulo/id/titulo. Codes: ASP <!DOCTYPE html><html lang="pt-br"><head><meta charset="utf-8"/><title>Teste…

VIEW QUESTION
Back To Top
Search