Welcome Guest, Not a member yet? Register   Sign In
index error :\
#1

[eluser]Evollution[/eluser]
http://www.fifago.com/radio/index

http://www.fifago.com/radio


why when i acces http://www.fifago.com/radio/ i get 404 but when http://www.fifago.com/radio/index i can see the page ?

i'm using 2.0.0
#2

[eluser]Evollution[/eluser]
and if i acces http://www.fifago.com/radio it works :\
#3

[eluser]Jaketoolson[/eluser]
whats your .htaccess and config files contain?
#4

[eluser]Evollution[/eluser]
Code:
<IfModule mod_rewrite.c>

    # Make sure directory listing is disabled
    Options +FollowSymLinks -Indexes
    RewriteEngine on

    # NOTICE: If you get a 404 play with combinations of the following commented out lines
    

    # Restrict your site to only one domain
    RewriteCond %{HTTP_HOST} ^fifago.com
    RewriteRule (.*) http://www.fifago.com/$1 [R=301,L]

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

</IfModule>
#5

[eluser]Abdul Malik Ikhsan[/eluser]
try this :
Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

Options -Indexes
#6

[eluser]InsiteFX[/eluser]
Code:
IfModule mod_rewrite.c>

    # Make sure directory listing is disabled
    Options +FollowSymLinks -Indexes
    RewriteEngine on

    # NOTICE: If you get a 404 play with combinations of the following commented out lines
    RewriteBase /

    # Restrict your site to only one domain
    RewriteCond %{HTTP_HOST} !^fifago\.com$
    RewriteRule ^(.*)$ http://www.fifago.com/$1 [R=301,L]

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

</IfModule>

Also check your server for the PHP version it's running!

InsiteFX




Theme © iAndrew 2016 - Forum software by © MyBB