21303 Posts in 5736 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1311 Views |
-
$BaseHref returns domain.com/index.php?

14 April 2011 at 4:35pm
This is only happening on our live linux server, and only with version 2.4.4 and 2.4.5.
When $BaseHref is used in a template, the url that is generated is "http://domain.com/index.php". Therefore take the following:
<a href="{$BaseHref}"><img src="{$BaseHref}/themes/challenger/images/Logo.png" alt="Logo Image" /></a>
is output as follows
<a href="http://ats.ecomcorp.co.nz/index.php/"><img src="http://ats.ecomcorp.co.nz/index.php//themes/challenger/images/Logo.png" alt="Logo Image" /></a>
Any Ideas? This is all fine on the Windows/WAMP box.
-
Re: $BaseHref returns domain.com/index.php?

28 April 2011 at 12:39pm
This is strange, I have just built a site under ss2.4.5, and $BaseHref works fine.
<li><a href="{$BaseHref}">Home</a></li>
For images or css under your theme, you may try $ThemeDir (from ViewableData.php)
<img src="/$ThemeDir/images/header.gif" width="600" height="93" border="0" alt="Header Image" />
-
Re: $BaseHref returns domain.com/index.php?

7 October 2011 at 6:04pm
I have a same issue.
If I enter URL "mydomain.com/index.php"
$BaseHref generate "mydomain.com/index.php" and this is messing up my other link and that results taking a user to 404 page.
-
Re: $BaseHref returns domain.com/index.php?

7 October 2011 at 6:17pm
I just found the solution here:
http://www.silverstripe.org/general-questions/show/14405?start=8============================================================
Rather than deleting files or hacking core code - I added this to _config.php:<code>
Director::setBaseURL('/');
</code>
============================================================Withthis code, even a user access to mydomain.com/index.php, no longer mess up other link having extra "index.php"
| 1311 Views | ||
|
Page:
1
|
Go to Top |




