[SOLVED] Calendar Details gets NOT FOUND
Posted: Mon Aug 09, 2010 1:09 pm
I am using Mod Rewrite and everything else works but when I click to view details of a calendar event, I get not found. Here is an example of what my URL looks like:
http://www.foo.bar/calendar/0/4-Title-Of-Item/
CMS Version 1.7.1
Calendar 0.8.2
HTACCESS:
Any advice?
http://www.foo.bar/calendar/0/4-Title-Of-Item/
CMS Version 1.7.1
Calendar 0.8.2
HTACCESS:
Code: Select all
Options +FollowSymLinks
RewriteEngine on
DirectoryIndex index.php index.html
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
RewriteCond %{QUERY_STRING} http\: [OR]
RewriteCond %{QUERY_STRING} \[ [OR]
RewriteCond %{QUERY_STRING} \] [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^.*$ – [F,L]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]