Utworzyłem sobie takie htaccess:
Kod
Options +FollowSymLinks
RewriteBase /
RewriteEngine On
RewriteRule ^index/([^-]+)/([^-]+)/([^-]+)/$ index.php?one=$1&two=$2&three=$3 [L]
RewriteBase /
RewriteEngine On
RewriteRule ^index/([^-]+)/([^-]+)/([^-]+)/$ index.php?one=$1&two=$2&three=$3 [L]
Mam jednak problem, gdyż gdy tylko wejdę w url http://localhost/index/1/2/3/, to wszystkie linki (a także ścieżki do obrazków), które normalnie znajdują się w indeksie zamiast do http://localhost/cos.html prowadzą do http://localhost/index/1/2/3/cos.html. Jak można to zmienić?