I received several private messages about the solution to make CMS made simple SEO working with ISAPI rewrite.
Here is my httpd.ini file:
Code: Select all
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Block external access to the httpd.ini and httpd.parse.errors files
RewriteRule /httpd(?:\.ini|\.parse\.errors).* / [F,I,O]
# Block external access to the Helper ISAPI Extension
RewriteRule .*\.isrwhlp / [F,I,O]
# Defend your computer from some worm attacks
RewriteRule .*(?:global.asa|default\.ida|root\.exe|\.\.).* . [F,I,O]
#RewriteCond Host: (.*)
#RewriteRule ([^.?]+[^.?/]) http\://$1$2/ [I,R]
RewriteRule ^/([^/]+)\.html /index.php\?page=$1 [I]
RewriteRule ^/([^/]+)/([^/]+)\.html /index.php\?page=$1/$2 [I]
RewriteRule ^/([^/]+)/([^/]+)([0-9]*)\.html /index.php\?page=$1/$2$3 [I]
RewriteRule ^/([^/]+)/([0-9]*)/([0-9]*)\.html /index.php\?page=$1/$2/$3 [I]
#RewriteRule ^/(.+)$ /index.php\?page=$1 [I,L]
Renember to put SEO on in the configuration file of CMS made simple
Good luck,
Hadion