Hello,
I've just installed dBTech SEO mod for vBulletin. It works great, however I have one huge problem. I am on IIS and the rewriting of URLs is not working quiet well. I'm new to IIS (I prefer Apache with htaccess - but what can I do) and I really don't know how can I fix the issue. Basically, the threads are working and everything, however the images and all the other things which have 404 - File or directory not found. won't work. This is the code I used for rewriting.
Could you give me a hand with this mod?
I've just installed dBTech SEO mod for vBulletin. It works great, however I have one huge problem. I am on IIS and the rewriting of URLs is not working quiet well. I'm new to IIS (I prefer Apache with htaccess - but what can I do) and I really don't know how can I fix the issue. Basically, the threads are working and everything, however the images and all the other things which have 404 - File or directory not found. won't work. This is the code I used for rewriting.
Code:
<rule name="rule 1e" stopProcessing="true">
<match url="^((archive/)?(.*\.php(/.*)?))$" />
<action type="Rewrite" url="/dbseo.php" appendQueryString="true" />
</rule>
<rule name="rule 2e" stopProcessing="true">
<match url="^(.+)$" />
<action type="Rewrite" url="/dbseo.php" appendQueryString="true" />
</rule>
Could you give me a hand with this mod?