Hello everyone,
I have a site and i use pivotx as a blog service in the folder http://www.mysite.com/blog/
I recentry added the following .htaccesss on the root of my server (i wanted to get rid of the .php in urls)
Now i cannot access my pivotx blog. the only way to access it is to type: http://www.mysite.com/blog/index but after that non of any links works.
The .htaccesss file contains the following:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{THE_REQUEST} \/index.php\ HTTP [NC]
RewriteRule (.*)index.php$ /$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
Do you have any ideas how to fix this problem?