Hi,
I just upgraded from 3.2 (if I remember correctly) to 3.3.2. Everything seems to work except whenever I click on a member name it doesn't go to the member page, it goes to:
/forum/members/a.html
and when I type in the name of the member into the URL it still redirects to a.html.
ex. The World's Cutest Animals Forum
I am using IIS 7 and PHP 5.2.11 FastCGI, IIS Rewrite 1.1.
Here are my rules from web.config which I have used for the last 2 years.
Code:<rule name="Rule 1"> <match url="^forum/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$" ignoreCase="false" /> <conditions> <add input="{HTTP_HOST}" pattern=".*worldscutestanimals.com" ignoreCase="false" /> </conditions> <action type="Rewrite" url="/forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap={R:1}" appendQueryString="false" /> </rule> <rule name="Rule 2"> <match url="^forum/((archive/)?(.*\.php(/.*)?)?)$" ignoreCase="false" /> <conditions> <add input="{HTTP_HOST}" pattern=".*worldscutestanimals.com" ignoreCase="false" /> <add input="{REQUEST_URI}" pattern="/forum/(admincp/|modcp/|cron)" ignoreCase="false" /> </conditions> <action type="Rewrite" url="/forum/vbseo.php" /> </rule> <rule name="Rule 3"> <match url="^forum/(.+)$" ignoreCase="false" /> <conditions> <add input="{HTTP_HOST}" pattern=".*worldscutestanimals.com" ignoreCase="false" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> <add input="{REQUEST_FILENAME}" negate="true" pattern="^/forum/(admincp|modcp|clientscript|cpstyles|images)/" ignoreCase="false" /> </conditions> <action type="Rewrite" url="/forum/vbseo.php" /> </rule>


LinkBack URL
About LinkBacks





Reply With Quote
