Welcome Guest, Not a member yet? Register   Sign In
Want to change Path?
#1

[eluser]Kaleem Ullah[/eluser]
hi....

I have to give the following path for my site…
hhtp://localhost/ci/testing/test/hello

but i want to change it to
http://localhost/testing/test/hello

how can i do that?

THANKS…
#2

[eluser]abmcr[/eluser]
put all files into the root folder:

htdocs
|--- index.php
|--- system
|--- application

and not into a ci folder
#3

[eluser]Phil Sturgeon[/eluser]
Consider the average .htaccess file in the CI root.

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

With one simple change...

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

Smile




Theme © iAndrew 2016 - Forum software by © MyBB