Welcome Guest, Not a member yet? Register   Sign In
double base url
#1

[eluser]dunken[/eluser]
Hi everyone!

I have a problem with my base url. Whenever I try to click a link or button/form submit my url changes
Code:
sub.domain.se/sub.domain.se/news/...

I just changed to hmvc if that can be a problem (don't know why it should). I can find others experienced the same problem but no solution that works for me.

.htaccess
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]

$config['base_url'] is as it should..

Code:
echo anchor(base_url('start'), 'start');
gives: http://sub.site.se/sub.site.se/sub.site.se/start

echo anchor('start', 'start');
gives: http://sub.site.se/sub.site.se/start

maybe i missed something in the latest update?

Edit:
If I remove my domain from the config:
Code:
$config['base_url'] = '';
then my links and buttons works... I am totally lost!
#2

[eluser]sv3tli0[/eluser]
What url you set at:
Code:
$config['base_url'] = '';

I am not sure but if you put for base_url url without http:// it may cause such problem..
#3

[eluser]CroNiX[/eluser]
It's because internally anchor(), along with some of the other URL Helpers, is using base_url(). You only pass the segments to anchor, like anchor('news/view'). See the user guide, where they aren't using base_url() in any of the examples...
#4

[eluser]dunken[/eluser]
Yes, as in the example before that's not the problem...

Code:
echo anchor('start', 'start');
gives: http://sub.site.se/sub.site.se/start

same problem in both form-submit and anchors.
#5

[eluser]Unknown[/eluser]
I'm having the same problem.
what was the solution?
#6

[eluser]Unknown[/eluser]
Me too: Whenever I try to click "create new item" button on this page:
http://thanhdu.net/index.php/news/create
my url changes to: http://thanhdu.net/index.php/news/thanhd...ews/create

What's wrong? I've followed step by step excactly from CodeIgniter User Guide Version 2.2.0.




Theme © iAndrew 2016 - Forum software by © MyBB