Having trouble getting the permalinks to work properly on a Windows, Zend Server and ISAPI Rewrite setup.
Here is my permlaink setting:
/%year%/%monthnum%/%day%/%postname%/
And using the default WP htaccess rules:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Currently every link goes back to the home page, /about/, /category/, etc. The URL is correct but the content displayed is the main page.
I have tried several variations found from Google results but they apply to PHP on top of IIS, not Zend Server because Zend Server will return $_SERVER['REQUEST_URI'] and the IIS fix in wp-settings.php is bypassed.
HELP!!!