web.config Change - URGENT
Budget: $10 – $20 USD
I want this done in one hour or less. Do not bid if you cannot do this.
This is my rewrite code for https://www.accidentlawyers.blog/
<rewrite>
<rules>
<rule name="rewrite to article.cfm">
<match url="^injury_lawyers/([0-9]+)/([_0-9a-z]+)\.cfm" />
<action type="Rewrite" url="article.cfm?id={R:1}&articleTitle={R:2}" />
</rule>
<rule name="rewrite to newsletter_article.cfm">
<match url="^accident_attorneys/([0-9]+)/([_0-9a-z]+)\.cfm" />
<action type="Rewrite" url="newsletter_article.cfm?id={R:1}&articleTitle={R:2}" />
</rule>
</rules>
</rewrite>
I currently have blog articles like this:
https://www.accidentlawyers.blog/injury_lawyers/58039/motorcycle_accident_lawyers_in_naukati_bay_alaska.cfm
I want a 301 redirect within the web.config to take the user to
https://www.accidentlawyers.blog/injury-lawyers/58039/motorcycle-accident-lawyers-in-naukati-bay-alaska.cfm
So it should replace all underscores with dashes. Note this needs to be dynamic and work for all URL articles and not just the one specified.
Likewise, I want to do the same thing for newsletters, which are in this format
https://www.accidentlawyers.blog/accident_attorneys/55524/accident_attorneys_in_sheepshead_bay_new_york.cfm
I want to replace the underscores with dashes. Has to work with all pages.
These have to be permenant 301 redirects so I do not lose backlink juice being passed to these articles.
I must be 100% satisfied with the result.
Place the term #webconfigGuru so I know you have read this and agree to the terms.
This is my rewrite code for https://www.accidentlawyers.blog/
<rewrite>
<rules>
<rule name="rewrite to article.cfm">
<match url="^injury_lawyers/([0-9]+)/([_0-9a-z]+)\.cfm" />
<action type="Rewrite" url="article.cfm?id={R:1}&articleTitle={R:2}" />
</rule>
<rule name="rewrite to newsletter_article.cfm">
<match url="^accident_attorneys/([0-9]+)/([_0-9a-z]+)\.cfm" />
<action type="Rewrite" url="newsletter_article.cfm?id={R:1}&articleTitle={R:2}" />
</rule>
</rules>
</rewrite>
I currently have blog articles like this:
https://www.accidentlawyers.blog/injury_lawyers/58039/motorcycle_accident_lawyers_in_naukati_bay_alaska.cfm
I want a 301 redirect within the web.config to take the user to
https://www.accidentlawyers.blog/injury-lawyers/58039/motorcycle-accident-lawyers-in-naukati-bay-alaska.cfm
So it should replace all underscores with dashes. Note this needs to be dynamic and work for all URL articles and not just the one specified.
Likewise, I want to do the same thing for newsletters, which are in this format
https://www.accidentlawyers.blog/accident_attorneys/55524/accident_attorneys_in_sheepshead_bay_new_york.cfm
I want to replace the underscores with dashes. Has to work with all pages.
These have to be permenant 301 redirects so I do not lose backlink juice being passed to these articles.
I must be 100% satisfied with the result.
Place the term #webconfigGuru so I know you have read this and agree to the terms.
Related categories:
Software Architecture
Website Management
Web Hosting
Website Optimization
Website Development