I have a problem with the fact that htaccess rewrite directives does not work. My directives are:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
As you can see all the urls that doesn`t point to a specified file on the server should be redirected through index.php, but this does not happen.
You can check this out on this link:
http://www.journeydiy.com/
The above link goes to index.php and works but the below link says: "No input file specified. " and DOES NOT GO through index.php
http://www.journeydiy.com/public/pages/home
Any suggestions ?


