Hi, I have get 504 error, while using this
URL: http://wiki.munjutut.fi/login?redirect=http://wiki.munjutut.fi/checkout or http://wiki.munjutut.fi/logout?redirect=http://wiki.munjutut.fi/checkout
At root folder I have .htaccess file
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
<IfModule mod_rewrite.c>
# Turn on URL rewriting
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage then use
# RewriteBase /mypage
RewriteBase /
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
does any know what is the problem?