kinderwagen
New Member
Hallo,
ich habe nach dem Umzug von meinem lokalen Windows/xampp System
auf den SuSe Linux Server mit Apache2 ein Problem mit dem URL Rewrite.
Was bislang lokal funktioniert, ist: Eine Magento Installation
mit dem mod_rewrite und ein Unterordner mit einer Typo3 Installation
in der ebenfalls mod_rerwite funktioniert.
Mit einem Magento Script wird nun eine aufgerufene URL die sich nicht
im Shop System befindet, als Textblock in den Shop inkludiert und ausgegeben.
Funktioniert lokal alles wunderbar.
Auf der Linux Maschine hingegen - funktioniert dieses Zusammenspiel nicht.
Ich erhalte von meinem besagten Script die Fehlermeldung das die angeforderte Seite nicht vorhanden ist.
Wo sollte ich nach dem Fehler denn schauen ?
Danke vorab einstweilen.
Auszug aus der php Info:
vhost.conf
.htacces Datei des Magento Shop
und die .htaccess Datei des Ordner pages in dem das Typo 3 liegt:
Auszug aus der Rewrite.log:
ich habe nach dem Umzug von meinem lokalen Windows/xampp System
auf den SuSe Linux Server mit Apache2 ein Problem mit dem URL Rewrite.
Was bislang lokal funktioniert, ist: Eine Magento Installation
mit dem mod_rewrite und ein Unterordner mit einer Typo3 Installation
in der ebenfalls mod_rerwite funktioniert.
Mit einem Magento Script wird nun eine aufgerufene URL die sich nicht
im Shop System befindet, als Textblock in den Shop inkludiert und ausgegeben.
Funktioniert lokal alles wunderbar.
Auf der Linux Maschine hingegen - funktioniert dieses Zusammenspiel nicht.
Ich erhalte von meinem besagten Script die Fehlermeldung das die angeforderte Seite nicht vorhanden ist.
Wo sollte ich nach dem Fehler denn schauen ?
Danke vorab einstweilen.
Auszug aus der php Info:
Code:
Apache/2.2.10 (Linux/SUSE)
Loaded Modules core prefork http_core mod_so mod_authz_host mod_actions mod_alias mod_auth_basic mod_authz_groupfile mod_authn_file mod_authz_user mod_autoindex mod_cgi mod_dir mod_include mod_log_config mod_mime mod_negotiation mod_setenvif mod_status mod_userdir mod_asis mod_imagemap mod_rewrite mod_php5 mod_perl mod_authz_default
vhost.conf
Code:
<VirtualHost *>
DocumentRoot /srv/www/htdocs/domainname/
ServerName www.domainname.de
ServerAlias domainname.de
ServerAdmin ...
# Log Files
CustomLog /var/log/domainname_de/custom.log common
Errorlog /var/log/domainname_de/error.log
RewriteLog /var/log/domainname_de/rewrite.log
RewriteLogLevel 3
# don't loose time with IP address lookups
HostnameLookups Off
# needed for named virtual hosts
UseCanonicalName Off
# configures the footer on server-generated documents
ServerSignature On
# Directory Index Sektion
<Directory /srv/www/htdocs/domainname/>
AllowOverride All
Options Indexes +FollowSymLinks
Order allow,deny
Allow from all
DirectoryIndex index.php
</Directory>
</VirtualHost>
.htacces Datei des Magento Shop
Code:
############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi
# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php
############################################
## GoDaddy specific options
# Options -MultiViews
## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn't work, rename php.ini to php5.ini
############################################
## this line is specific for 1and1 hosting
#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php
############################################
## default index file
DirectoryIndex index.php
<IfModule mod_php5.c>
############################################
## adjust memory limit
# php_value memory_limit 64M
php_value memory_limit 256M
php_value max_execution_time 360000
############################################
## disable magic quotes for php request vars
php_flag magic_quotes_gpc off
############################################
## disable automatic session start
## before autoload was initialized
php_flag session.auto_start off
############################################
## enable resulting html compression
#php_flag zlib.output_compression on
###########################################
# disable user agent verification to not break multiple image upload
php_flag suhosin.session.cryptua off
###########################################
# turn off compatibility with PHP4 when dealing with objects
php_flag zend.ze1_compatibility_mode Off
</IfModule>
<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
<IfModule mod_deflate.c>
############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip
# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
# Netscape 4.x has some problems...
#BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don't compress images
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary
</IfModule>
<IfModule mod_ssl.c>
############################################
## make HTTPS env vars available for CGI mode
SSLOptions StdEnvVars
</IfModule>
<IfModule mod_rewrite.c>
############################################
## enable rewrites
Options +FollowSymLinks
RewriteEngine on
############################################
## you can put here your magento root folder
## path relative to web root
# RewriteBase /
############################################
## workaround for HTTP authorization
## in CGI environment
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
############################################
## always send 404 on missing files in these folders
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
############################################
## never rewrite for existing files, directories and links
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
############################################
## rewrite everything else to index.php
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>
############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead
AddDefaultCharset Off
#AddDefaultCharset UTF-8
<IfModule mod_expires.c>
############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires
ExpiresDefault "access plus 1 year"
</IfModule>
############################################
## By default allow all access
Order allow,deny
Allow from all
############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags
#FileETag none
und die .htaccess Datei des Ordner pages in dem das Typo 3 liegt:
Code:
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]
Auszug aus der Rewrite.log:
Code:
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.hauck-dev.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) [perdir /srv/www/htdocs/domainname/] add path info postfix: /srv/www/htdocs/domainname/tipps_und_infos -> /srv/www/htdocs/domainname/tipps_und_infos/links.html
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) [perdir /srv/www/htdocs/domainname/] strip per-dir prefix: /srv/www/htdocs/domainname/tipps_und_infos/links.html -> tipps_und_infos/links.html
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) [perdir /srv/www/htdocs/domainname/] applying pattern '.*' to uri 'tipps_und_infos/links.html'
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) [perdir /srv/www/htdocs/domainname/] add path info postfix: /srv/www/htdocs/domainname/tipps_und_infos -> /srv/www/htdocs/domainname/tipps_und_infos/links.html
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) [perdir /srv/www/htdocs/domainname/] strip per-dir prefix: /srv/www/htdocs/domainname/tipps_und_infos/links.html -> tipps_und_infos/links.html
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) [perdir /srv/www/htdocs/domainname/] applying pattern '^(.*)$' to uri 'tipps_und_infos/links.html'
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (2) [perdir /srv/www/htdocs/domainname/] rewrite 'tipps_und_infos/links.html' -> 'index.php?/tipps_und_infos/links.html'
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) split uri=index.php?/tipps_und_infos/links.html -> uri=index.php, args=/tipps_und_infos/links.html
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (3) [perdir /srv/www/htdocs/domainname/] add per-dir prefix: index.php -> /srv/www/htdocs/domainname/index.php
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (2) [perdir /srv/www/htdocs/domainname/] strip document_root prefix: /srv/www/htdocs/domainname/index.php -> /index.php
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddafea668/initial] (1) [perdir /srv/www/htdocs/domainname/] internal redirect with /index.php [INTERNAL REDIRECT]
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddaffb1c8/initial/redir#1] (3) [perdir /srv/www/htdocs/domainname/] strip per-dir prefix: /srv/www/htdocs/domainname/index.php -> index.php
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddaffb1c8/initial/redir#1] (3) [perdir /srv/www/htdocs/domainname/] applying pattern '.*' to uri 'index.php'
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddaffb1c8/initial/redir#1] (3) [perdir /srv/www/htdocs/domainname/] strip per-dir prefix: /srv/www/htdocs/domainname/index.php -> index.php
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddaffb1c8/initial/redir#1] (3) [perdir /srv/www/htdocs/domainname/] applying pattern '^(.*)$' to uri 'index.php'
192.168.13.254 - - [11/Jan/2010:08:25:49 +0100] [www.domainname.de/sid#7f4ddabd9b70][rid#7f4ddaffb1c8/initial/redir#1] (1) [perdir /srv/www/htdocs/domainname/] pass through /srv/www/htdocs/domainname/index.php