Welcome Guest, Not a member yet? Register   Sign In
hide index.php
#3

[eluser]pisio[/eluser]
[quote author="Yorick Peterse" date="1280547830"]Put this in your .htaccess file and all your problems should be solved (given that mod_rewrite is working):

Code:
<IfModule mod_rewrite.c>

        Options +FollowSymLinks
        RewriteEngine on

        # Send request via index.php (again, not if its a real file or folder)
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d

        <IfModule mod_php5.c>
                RewriteRule ^(.*)$ index.php/$1 [L]
        </IfModule>                                    

        <IfModule !mod_php5.c>
                RewriteRule ^(.*)$ index.php?/$1 [L]
        </IfModule>

</IfModule>
[/quote]
LOl, that's work.
Tnx Smile You're the best Smile


Messages In This Thread
hide index.php - by El Forum - 07-30-2010, 03:20 PM
hide index.php - by El Forum - 07-30-2010, 04:43 PM
hide index.php - by El Forum - 07-31-2010, 12:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB