Part of the EllisLab Network
   
 
Remove “index.php” when using anchor()-function
Posted: 18 January 2009 03:05 PM   [ Ignore ]  
Lab Assistant
RankRank
Total Posts:  175
Joined  12-27-2008

How can I remove the “index.php”-text from my URL when I use the anchor()-function? Or isn’t it possible?

<p><?=anchor('overview/comments/' $row->id'Comments')?>

// <p><a href="http://domain.net/index.php/overview/comments/1.html">Comments</a> 

*** I’m using .htaccess to remove “index.php” from my URLS, but it seems to stay whenever I use anchor()-function.

 Signature 

Greetings from Denmark!

Profile
 
 
Posted: 18 January 2009 04:18 PM   [ Ignore ]   [ # 1 ]  
Lab Assistant
RankRank
Total Posts:  269
Joined  09-13-2007

Just remove index.php from your config file.

$config['index_page'"index.php"

should be

$config['index_page'""

have a good day !!!

 Signature 

Sarfaraz Momin.
PHP With Us

Profile
 
 
Posted: 18 January 2009 04:22 PM   [ Ignore ]   [ # 2 ]  
Lab Assistant
RankRank
Total Posts:  175
Joined  12-27-2008

Yes, okay, it removes the “index.php”-text, but as you can see - http://habbofreak.kliboo.net/ - now it won’t let me access the comment page unless I manually write “index.php” in the URL. :(

 Signature 

Greetings from Denmark!

Profile
 
 
Posted: 18 January 2009 04:31 PM   [ Ignore ]   [ # 3 ]  
Lab Assistant
RankRank
Total Posts:  269
Joined  09-13-2007

In that case use the .htaccess file to remove index.php from your url. As sample .htaccess is mentioned below:

Options +FollowSymLinks
RewriteEngine On

RewriteBase 
/

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

Have a good day !!!

 Signature 

Sarfaraz Momin.
PHP With Us

Profile
 
 
Posted: 18 January 2009 07:06 PM   [ Ignore ]   [ # 4 ]  
Lab Assistant
RankRank
Total Posts:  175
Joined  12-27-2008

Thanks a lot!

 Signature 

Greetings from Denmark!

Profile
 
 
Posted: 11 November 2009 03:10 AM   [ Ignore ]   [ # 5 ]  
Summer Student
Avatar
Total Posts:  19
Joined  08-27-2009

Thanks Sarfaraz Momin smile

 Signature 

keep calm and good for others

Profile
 
 
Posted: 07 September 2010 09:20 PM   [ Ignore ]   [ # 6 ]  
Summer Student
Avatar
Total Posts:  7
Joined  09-07-2010

Thanks I tried!
And It works!

 Signature 

I do what I should to do

Profile
 
 
Posted: 17 September 2010 05:54 AM   [ Ignore ]   [ # 7 ]  
Grad Student
Avatar
Rank
Total Posts:  49
Joined  04-09-2010

Your first solution works just fine for me, thanks Sarfaraz!

Profile