Welcome Guest, Not a member yet? Register   Sign In
how to remove index.php from all of my methods or cntrollers and redirect them to without index.php url
#11

[eluser]CroNiX[/eluser]
No, it will not affect SEO. Search engines can only follow links. If you don't make links with index.php in them, they won't get cataloged. If you make links that use both with and without index.php for the same link, then you will have a problem.

So it doesn't matter if you can access them both ways. Just only use one way to write the links, without the index.php.
#12

[eluser]dhananjay[/eluser]
Thanks a lot,


all links on my website are without index.php......
#13

[eluser]Unknown[/eluser]
Hi,

create file in your codeigniter folder name ".htaccess"

in that file add following code:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$1 [PT,L]

then save it. your problem will be solve.




Theme © iAndrew 2016 - Forum software by © MyBB