Strona 1 z 1
[+] apache2 - przekierowanie wyświetlanej strony
: 15 września 2010, 22:00
autor: szpecu
Witam.
Wpisując adres mojej strony, czyli np.:
przekierowuje mnie na:
Kod: Zaznacz cały
[url]http://mojastrona.pl/apache2-default/[/url]
Na właściwą stronę dopiero przekieruje jeśli wpiszę w przeglądarce:
lub html.
Proszę o pomoc. Dziękuję z góry.
: 15 września 2010, 22:34
autor: lessmian2
A kolega
szpecu zajrzał w konfig apache? Bo wydaje mi się, że nie. Jakbyś się przyjrzał, to zobaczyłbyś, że w pliku z domyślnym VHostem
masz dyrektywę o wiele mówiącej nazwie
(lub coś podobnego, nie pamiętam w tej chwili a nie chce mi się szukać). Usuń, przeładuj serwer apache i powinno być dobrze.
: 15 września 2010, 23:29
autor: szpecu
Nic nie dało.
: 16 września 2010, 20:57
autor: 1oBuZ
: 19 września 2010, 14:26
autor: szpecu
Kod: Zaznacz cały
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>>
: 19 września 2010, 15:20
autor: lessmian2
Przecież masz dyrektywę
RedirectMatch o której pisałem:
Kod: Zaznacz cały
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
RedirectMatch ^/$ /apache2-default/
i prosiłem abyś ją usunął lub zakomentował. Skoro prosisz o pomoc, to czemu się nie stosujesz do udzielanych Ci rad i dziwisz się, że problem dalej występuje?
: 19 września 2010, 15:27
autor: szpecu
Kod: Zaznacz cały
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
# RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
Nadal pokazuje:
Edycja:
Działa to co powiedziałeś, tylko nie
zresetowałem apache2
.