Hey!.

I'm using zf 1.9.5 and I got this config in the frontController resource:

    "resources" => array(
        "frontController" => array(
            "baseUrl" => "/Cesantias",
            "throwExceptions" => true
        )
    )

I access the application using this url:
http://192.168.20.183/Cesantias but I don't know why doesn't wok on
IE, all images and links are broken, a link example on IE:
http:///Cesantias/index/login all works fine on Firefox :S, there's
something wrong on my apache configuration? I got this:

Alias /Cesantias "C:\Program Files\Zend\Apache2\htdocs\Cesantias\public"

<Directory "C:\Program Files\Zend\Apache2\htdocs\Cesantias\public">
    # Options MultiViews -Indexes FollowSymLinks
    AllowOverride All
    <Limit GET POST OPTIONS>
        Order allow,deny
        Allow from all
    </Limit>
    <Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
        Order deny,allow
        Deny from all
    </Limit>
</Directory>

Thanks in advice.

Reply via email to