Hi
I’m having the same problem. Hoping someone can help. I’ve gone thru all the settings.
here’s an example:
I have a post with keyword ‘Moving Estimates’ in the content. there’s another post with title ‘3 Types of Moving Estimates’ .. shouldn’t the first post link automatically to the second post?
Please advise.
yes i’ve tried a few things
rite now my permalinks is set to custom structure:
http://mysite.com/blog/%postname%/
and the web.config has the following in the <system.Webserver> section:
<rewrite>
<rules>
<rule name=”Main Rule” stopProcessing=”true”>
<match url=”.*” />
<conditions logicalGrouping=”MatchAll”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php/{R:0}” />
</rule>
</rules>
</rewrite>