Forums

Case sensitivity problem on IIS after installing IIS mod rewrite (1 post)

  1. Anonymous
    Unregistered
    Posted 3 years ago #

    I have wordpress running on IIS on a Windows Server.
    Today I installed IIS Mod Rewrite so that I could remove the index.php from my permalinks.
    Everything is now working fine with the permalinks.

    However, suddenly my website has become case sensitive.

    http://www.chinaonecall.com/news works fine but http://www.chinaonecall.com/News goes to a wordpress "page not found" message.

    My .htaccess file looks like this:

    # BEGIN WordPress
    RewriteEngine On

    RewriteRule ^/news/index.php/(.+)$ http://www.chinaonecall.com/news/$1 [R=301,L,NC]

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule . index.php [L]

    # END WordPress

    I can't work out how to make http://www.chinaonecall.com/News redirect to http://www.chinaonecall.com/news

    Any ideas?

Topic Closed

This topic has been closed to new replies.

About this Topic