How to rewrite only category and heading of the page in URL web config -


i trying change url using rule:

<rule name="rewrite news page">     <match url="^news/([_0-9a-z-]+)/([\s\s]+)" />     <action type="rewrite" url="page.php?id={r:1}&amp;title={r:2}" /> </rule> 

but don't want use id in url.


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -