Jacek Morek Programista hobbysta
Temat: nazwa.pl problem z htaccess
witam na wersji testowej na apache działa bez problemu natomiast na hostingu w nazwa.pl gdy nie mam pliku htaccess strona główna się uruchamia natomiast linki nie działają. Po wrzucenie htaccess otrzymuje błąd 500. Gdy wejdę na wersje dev czyli glowna_dev.php to strona działa prawidłowo natomiast gdy wejdę na glowna.php otrzymuje błąd 500.zawartość pliku htaccess
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
#RewriteCond %{REQUEST_URI} !\.html$
#RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
# redirect to the backend web controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} ^admin.*
RewriteRule ^(.*)$ backend.php [QSA,L]
# redirect to the backend web controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} ^sklep.*
RewriteRule ^(.*)$ sklep.php [QSA,L]
# no, so we redirect to our front web controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
Dlaczego na nazwie nie działa. Proszę o pomocJacek Morek edytował(a) ten post dnia 29.06.11 o godzinie 10:23