Page 1 of 1

Splash page did not forward to index.php

Posted: 07 Aug 2011, 00:56
by Arkady
I unsuccessfully attempted to implement Splash page to my website.
Links edited correctly, as you can see below, but clicking to it did not forwarding to desired page, it just stayed on Splash page.
It seems that some configuration missed, but I can not find it.
Code
<body>
	<div class="content">
		<div class="box rounded">
			<a href="http://yuliaphoto.co.il/?language=russian#/content/start/" class="rounded"><img src="Russian_language.png" align="absmiddle" />Русский</a>
			<a href="http://yuliaphoto.co.il/?language=hebrew#/content/start/" class="rounded"><img src="Hebrew_language.png" align="absmiddle" />עברית</a>
		</div>
	</div>
</body>
Thank you

Re: Splash page did not forward to index.php

Posted: 07 Aug 2011, 01:02
by Nick
Not sure what do you mean, just saved your code to test.html, clicked the links - it works. Btw you don't need to add #content/start part.

Re: Splash page did not forward to index.php

Posted: 07 Aug 2011, 02:26
by Arkady
Thank you for fast response.
Currently I putted index.html file in to my root directory and you can observe how the issue occurred.
I used the
Code
http://yuliaphoto.co.il/?language=russian
kind links and it did not helped.
It seems that some server configuration required, but I don't know which.

Re: Splash page did not forward to index.php

Posted: 07 Aug 2011, 05:46
by Arkady
I found out the solution.
I added to the links used previously "index.php" and it looks like
Code
http://yuliaphoto.co.il/index.php?language=russian#/content/start
This workaround solves the occurred issue. Hope this will help to other users too.

Re: Splash page did not forward to index.php

Posted: 07 Aug 2011, 08:35
by mjau-mjau
This is because you have a file index.html in your root, which handles the language selection. Index.html loads before index.php if it exists, so you can not use yuliaphoto.co.il/?parameters ... You need to target the Imagevue index.php file directly.