Hello, I've upgraded my online site from 1.4.1.6 to 1.4.9.
Now I have problem with navigation: from menu, if I click a link to custom page (zenpage) I Got "file not found".
Example URL: http://my.examplesite.ext/zenphoto/page/gallery
But if I visit my local site everything is ok, navigation works fine.
The mod rewrite is checked
The .htacces file seems good..
# htaccess file version 1.4.5;
# Rewrite rules are now handled by PHP code
# See the file "zenphoto-rewrite.txt" for the actual rules
#
# These rules redirect everything not directly accessing a file to the Zenphoto index.php script
#
<IfModule mod_autoindex.c>
IndexIgnore *
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /zenphoto
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [L]
RewriteRule ^.*/?$ index.php [L,QSA]
</IfModule>
Thank you