index.php ?
index.php ?
witam wszystkich mam problem bo nie wiem co mam zrobić żebym nie musiał wpisywać w adresie strony index.php tzn chce miec adres http://www.xxx.pl/forum a nie tak jak dotychczas mam http://www.xxx.pl/forum/index.php 
- @Marcin
- Zasłużony
- Posty: 1635
- Rejestracja: 08 lutego 2009, 21:27
- Lokalizacja: Nowa Ruda (PL) / Milton Keynes (UK)
- Kontakt:
Re: index.php ?
Nie musisz wpisywac index.php wystarczy sam adres
www.adres.pl/forum tak jak jest na tym forum: http://www.phpbb.pl/forum/
www.adres.pl/forum tak jak jest na tym forum: http://www.phpbb.pl/forum/
Wsparcie phpBB PL !!
Re: index.php ?
jak wpisuje www.adres.pl/forum to wyskakuje mi ze Strona o podanym adresie nie istnieje. ;/
- @Marcin
- Zasłużony
- Posty: 1635
- Rejestracja: 08 lutego 2009, 21:27
- Lokalizacja: Nowa Ruda (PL) / Milton Keynes (UK)
- Kontakt:
Re: index.php ?
podaj adres forum, wersje skryptu i zainstalowane modyfikację, gdzie wykupiony masz serwer?
Wsparcie phpBB PL !!
Re: index.php ?
forum mam phpbb 3.0.8 zadnych modyfikacji jeszcze nie instalowałem bo dopiero wczoraj założyłem serwer mam na kei.pl
Re: index.php ?
Sprawdź czy plik .htaccess jest obsługiwany przez serwer i czy niema czasem rozszerzenia htaccess.txt, jak ma to zmień na .htaccess
Re: index.php ?
jak sprawdzić czy jest obsługiwany przez serwer? nie ma rozszerzenia .htaccess.txt jest .htaccess
Re: index.php ?
Dobra to ewidentnie wina serwera, skoro masz domyślne phpbb3 i w tym pliku nie grzebałeś to wina hostingu. Sam, miałem forum w subdomenie i latało.
Re: index.php ?
Sprawdź czy twój .htaccess ma taki kod
Kod: Zaznacz cały
AllowOverride NoneRe: index.php ?
tak wyglada cały plik .htaccess
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
Re: index.php ?
Spróbuj tego
Kod: Zaznacz cały
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
DirectoryIndex index.php
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>