Internal Server Error 500
Buonasera, ricevo questo errore provando ad installare un CMS per una web directory...
Leggendo gli altri topic ho capito che l'errore è nell'htaccess, infatti se lo rinomino non si presenta più l'errore ma ho altri problemi, quindi vi posto l'htaccess
Codice:
<Files ~ "\.log$">
Order allow,deny
Deny from all
</Files>
<IfModule mod_rewrite.c>
# Check if mod_rewrite module loaded and we can work with SEO urls
SetEnv HTTP_MOD_REWRITE On
RewriteEngine on
# here is an ability to set additional "parent" theme, images from this theme will be checked in the first order
# if they aren't existed in original theme, then in default theme
#RewriteCond %{REQUEST_URI} !/themes/default/(.*)
#RewriteCond %{REQUEST_URI} \.(jpg|gif|png|ico)$ [NC]
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{DOCUMENT_ROOT}/themes/PARENT_THEME/$2 -f
#RewriteRule ^themes/([^/]+)/(.*)$ themes/PARENT_THEME/$2
# When images from 'themes/' subfolders can not be found - look for them in default theme
RewriteCond %{REQUEST_URI} \.(jpg|gif|png|ico)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^themes/([^/]+)/(.*)$ themes/default/$2 [L]
# Combine js static files in one big file + gzip it (if possible)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*\.js) combine.php?type=javascript&files=$1
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^yoursite\.com$ [NC]
# RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
#RewriteRule ^(.*)$ index.php/$1 [L]
RewriteRule ^(.*)$ ./index.php [L]
</IfModule>