ugrás a tartalomhoz

Archívum - Ápr 9, 2009

rövid webcím beállítása után 400-as hibát dob

Tanul0 · 2009. Ápr. 9. (Cs), 08.29
Hi!

Olvastam a itt a weblaboron azt a cikket amiben le van írva, hogy hogyan csinálhatunk rövid webcímeket.

Én a rewrite modul haszánlata mellett döntöttem.

A virtualhost:

<VirtualHost *:80>
        ServerAdmin webmaster@localhost
        ServerName akarmi.hu
        AddDefaultCharset UTF-8
        DocumentRoot /path/to/webdirectory/
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /path/to/webdirectory/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog /path/to/log/directory/error.log
        LogLevel warn

        CustomLog /path/to/log/directory/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [QSA]
</IfModule>
</VirtualHost>
Így néz ki a virtual host, ha benne van a rewrite akkor 400-as hibát ad.
Mit csinálok rosszul?

Üdv!