cant get to work site_url in anchor |
[eluser]Edgars[/eluser]
Not Found The requested URL /index.php/welcome/content was not found on this server. Apache Server at example.com Port 80 Same error as before. Reinstalled wamp server and codeigniter. When I try using that link I made, he throws me to http://example.com/index.php/welcome/content and shows error instead 'asdf' But when I enter manually in adress bar http://localhost/index.php/welcome/content, I got echo'ed 'asdf' as it is supposed to. Ah when I posted reply, I saw my problem. Had to change $config['base_url'] = "http://example.com/"; to $config['base_url'] = "http://localhost/"; in config file ![]() <?php class Welcome extends Controller { function __construct() { parent::Controller(); $this->load->helper('url'); } function index() { $this->load->view('welcome_message'); } function content(){ echo "asdf"; } } ?> Code: <body> |
Messages In This Thread |
cant get to work site_url in anchor - by El Forum - 11-15-2010, 12:15 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 01:34 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 01:51 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 02:13 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 02:29 PM
|