Welcome Guest, Not a member yet? Register   Sign In
.ht acess redirection
#1

[eluser]Shouvik-S-Mazumdar[/eluser]
hi

I have recently used the .htacess mod i found in the wiki :

http://codeigniter.com/wiki/mod_rewrite/


it works fine . however i have a small question . before using this mod i had a url like :

websiteName/profile/3 where by using the URI segment i fetched the user id as 3 and query my database. but now by adding this .html mod re write i dont seem to get it working properly


i have tried various combinations :


profile.html/3

profile/3.html

profile/3


but none seems to be working. what could be the possible url structure for the problem mentioned before


PS : i am a newbie in code igniter....
#2

[eluser]PowerCode[/eluser]
Can you show us your .htaccess contents? Without it, I don't think we can offer much help.
#3

[eluser]Shouvik-S-Mazumdar[/eluser]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

#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]

#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
#This last condition enables access to the images and css folders, and the robots.txt file
#Submitted by Michael Radlmaier (mradlmaier)
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
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>




Theme © iAndrew 2016 - Forum software by © MyBB