Conifxx und mod_rewrite

JOat

Registered User
Auch wenns schon x Beiträge zu diesem Thema gibt, mir hat leider keiner weitergeholfen.

Wenn die .conf so aussieht bekomme ich nur ein "403"

Wenn ich aber oben ein "Options +FollowSymLinks +SymLinksIfOwnerMatch" mache funktionierts. Wieso überschreibt das untere nicht das obere? So sollte das doch sein?!

Hab schon verschiedene andere Sachen probiert. Leider hat nichts geholfen. Die verwendete .htaccess ist die von Serendipity

Code:
<Directory "/var/www/web5/html">
  Options -FollowSymLinks -SymLinksIfOwnerMatch
  <IfModule mod_access.c>
    Allow from all
  </IfModule>
</Directory>


<Directory "/var/www/web5/html/cgi-bin/">
  <IfModule mod_python.c>
    <Files ~ "\.py$">
      AddHandler python-program .py
      PythonHandler mod_python.cgihandler
    </Files>
  </IfModule>
</Directory>

<VirtualHost 123.123.123.123:80>
  ServerName www.abc.de
  ServerAlias web5.xyz.info abc.de

  DocumentRoot /var/www/web5/html
  SuexecUserGroup web5 web5
  ScriptAlias /cgi-bin/ /var/www/web5/html/cgi-bin/
  <IfModule mod_python.c>
    <Files ~ "\.py$">
      AddHandler python-program .py
      PythonHandler mod_python.publisher
    </Files>
  </IfModule>
  php_admin_value open_basedir /var/www/web5/html/:/var/www/web5/phptmp/:/var/www/web5/files/:/var/www/web5/atd/
  php_admin_value file_uploads 1
  php_admin_value upload_tmp_dir /var/www/web5/phptmp/
<Directory "/home/www/web5/html">
  AllowOverride All
  Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
</VirtualHost>

Code:
[error] [client 321.321.321.321] Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden: /var/www/web5/html/archives/2006, referer: http://www.abc.de/
 
<Directory "/var/www/web5/html">
Options -FollowSymLinks -SymLinksIfOwnerMatch
<IfModule mod_access.c>
Allow from all
</IfModule>
</Directory>
...
<Directory "/home/www/web5/html">
AllowOverride All
Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
</VirtualHost>

Wenn du die beiden Abschnitte meinst, dann schaue dir mal an, auf welche Verzeichnisse im Einzelnen gezeigt wird.
 
Arghhhhh.....

Das tolle ist das /home/www auf /var/www verlinkt aber scheinbar macht das was aus... denn jetzt scheints zu gehn :)
 
Back
Top