Kod
RewriteEngine On
RewriteRule ^(.*)$ framework/public_html/index.php/$1 [PT,L]
RewriteRule ^(.*)$ framework/public_html/index.php/$1 [PT,L]
Niestety otrzymuję błąd "Internal Server Error". Co zrobić, aby to działało? W miejsce $1 chciałbym dawać ścieżki typu val1/val2/ itp.
UPDATE:
Ok, mam rozwiązanie mojego problemu:
Kod
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/framework/public_html/
RewriteRule ^(.*)$ framework/public_html/index.php/$1 [PT,L,NC,QSA]
RewriteCond %{REQUEST_URI} !^/framework/public_html/
RewriteRule ^(.*)$ framework/public_html/index.php/$1 [PT,L,NC,QSA]
Temat do zamknięcia.