[eluser]EdemOne[/eluser]
i am new code igniter and i am having some problem. i tried to place the htaccess file in the project file. and since i have done that i cant call any other function in the browser,every time i do so it directs me to the wampserver page. can somebody please help me.
[eluser]EdemOne[/eluser]
no i have not installed facebook in any of the subdirectory. i did replace the sitename with the project folder name but the problem is still there.Even after following the instruction above i didnt get any change. Is there any other way out?
[eluser]CodeIgniteMe[/eluser]
Can you list down here the path to your wamp web root/htaccess?
and can you list down the full contents of you .htaccess file?
[eluser]EdemOne[/eluser]
the path to the wamp web root/htaccess is:
wamp/www/try/htaccess
below is the content of my .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /try/
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
[eluser]EdemOne[/eluser]
yeah basically that is what i want to do. i replace the code above with what is in the .htaccess file but it is not working. please how should i use the code above with the .htaccess file.