|
Muss man bei der PHP5-CGI Variante das normale PHP für diesen VHost abstellen??
Wenn ich das mache, bekomme ich die PHP-Dateien zum Download angeboten.
Meine .htaccess schaut momentan so aus:
<IfModule mod_php5.c> php_flag magic_quotes_gpc off php_flag short_open_tag on </IfModule>
Action php5-cgi /cgi-bin/php5-cgi AddHandler php5-cgi .php DirectoryIndex index.php
RewriteEngine on
#RewriteBase /
RewriteCond %{REQUEST_URI} !^/media/ RewriteCond %{REQUEST_URI} !^/skin/ RewriteCond %{REQUEST_URI} !^/js/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
Muss ich evtl. noch andere Apache-Module laden? Das Actions-Modul ist geladen, CGI läuft auch, zumindest erscheinen keine Fehler mehr im Apache-Log.
|