Mam takie coś:
i jak kliknę na stronie w "TAB 1" to strona mi się przeładowuje i jak masz np. taki link: strona.pl/podstrona/kategoria/ to przerzuca mnie na główną i dopisuje #tab1 do adresu. Mam ustawiony <base href> i to pewnie przez to, ale jak to naprawić? próbowałem dać taki link: strona.pl/podstrona/kategoria/#tab1 ale to też nie działa. htaccess?
Options FollowSymLinks RewriteEngine On DirectoryIndex index.php RewriteBase / RewriteCond %{REQUEST_URI} !^/index.php RewriteRule ^([^,]*)/([^,]*)/([^,]*).html$ index.php?page=$1&cat=$2&id=$3 [L] RewriteRule ^([^,]*)/([^,]*)?/$ index.php?page=$1&cat=$2 [L] RewriteRule ^(.*)?/$ index.php?page=$1 RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]