Ferenc Straub
Ferenc Straub

Reputation: 115

Codeigniter http request and 404

I have a problem with Codeigniter.

This is my code:

http://pastebin.com/scccVP8D

If my url is: example.com/validator/validator/value/323445

Http request response:

323445

404 Page Not Found

The page you requested was not found.

Why do i get an error 404?

Upvotes: 0

Views: 142

Answers (1)

Erman Belegu
Erman Belegu

Reputation: 4079

I don't see value/323445 anywhere in your code. You just have function validator without any parameter.

So, when you call example.com/validator/validator/value/323445 the page don't egsist.

You need to delete parameter or to add parameter in function and to use it.

Upvotes: 1

Related Questions