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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -