Rewrite rule for codeigniter?

You'll want to use mod_rewrite to remove your index. Php file like you have above, but use CodeIgniter's routing features to reroute example. Com/model to example.Com/welcome/bil/model.

You'll want to use mod_rewrite to remove your index. Php file like you have above, but use CodeIgniter's routing features to reroute example. Com/model to example.Com/welcome/bil/model.

In your routes. Php configuration file, you can then define a new route like this: // a URL with anything after example.Com // will get remapped to the "welcome" class and the "bil" function, // passing the match as a variable $route'(:any)' = "welcome/bil/$1"; So then, typing example. Com/abc123 would be equivalent to example.

Com/welcome/bil/abc123. Note that only characters permitted by $config'permitted_uri_chars' (which is located in your config. Php file) are allowed in a URL.

Hope that helps!

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions