Pretty URLs on concrete5 5.6.2.1/Apache 2.2.25 (Win32)/PHP 5.3.27
PermalinkHas anyone had any problems enabling pretty URLs with the latest version concrete5? This is running on Windows Server 2012 with Apache 2.2.25 and PHP 5.3.27 as indicated in the subject.
Thanks in advance!

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /test/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule ^(.*)/$ index.php/$1 [L]
</IfModule>
<?php
define('DB_SERVER', 'server');
define('DB_USERNAME', 'username');
define('DB_PASSWORD', 'password');
define('DB_DATABASE', 'database');
define('PASSWORD_SALT', 'password_salt');
?>
I also cleared the concrete5 cache to make sure it wasn't still holding onto something old.
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}/index.html !-f RewriteCond %{REQUEST_FILENAME}/index.php !-f RewriteRule ^(.*)/$ index.php/$1 [L] </IfModule>
File does not exist: D:/www/test/about-us, referer: (URL of site; I would post it, but I'm not allowing it through our firewall yet)
The page I clicked on (that gave me a 404 error) is called About Us and Apache is looking for a file called about-us in the web directory. Now I'm starting to wonder if something in httpd.conf isn't off.
See this Apache documentation for more information.
http://httpd.apache.org/docs/current/mod/core.html#allowoverride...