See this is the URL path to access my local server..
"http://localhost/CodeIgniter/"
I need to change this URL and need to give my own URL..after adding my URL i need to access my local server using my own URL... How can i do that??please help me...

not sure if this is what you mean...but codeigniter urls are caled via these commands :
site_url('pagename') or base_url('pagename')

you will need to configure these destinations of site/base_url in the config.php file

you then call them anywhere on your server like <a href="<?php echo site_url('index') ;?>">LINK TEXT</a>

you do not use the extension name in the page names (ie ('index.php')..you only need the actual page name/function name)

hope this helps

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.