I use standard .htaccess delivered with CMS Made Simple in the folder doc as htaccess.txt. The problem that I have is that if I create a page in CMS Made Simple with page alias that equals to the folder name, rewrite rule is ignored and I am redirected directly to the folder.
Example 1: a page has an alias 'uploads'. There is already a folder named 'uploads'. Rewrite rule is ignored and I am redirected into the folder upload.
Example 2 [SOLVED]: a page has an alias ' preview'. There is already a file named 'preview.php'. Rewrite rule is ignored and a file preview.php called instead.
The second example deals with my server configuration allowing MultiViews. I had to add -MultiViews to .htaccess
Code: Select all
Options +FollowSymLinks -MultiViews
Thank you for your help.