W pliku .htaccess mam takie zapisy odnośnie przekierowań.
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# Przekierowanie na https:
#RewriteCond %{HTTPS} off
#RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=302,L]
#RewriteRule ^(.+)/$ $1 [R=301,L]
# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
#RewriteCond %{REQUEST_URI} !\.html$
RewriteRule .* - [L]
# we check if the .html version is here (caching)
#RewriteRule ^$ index.html [QSA]
#RewriteRule ^([^.]+)$ $1.html [QSA]
#RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L,E=noconntimeout:1]
</IfModule>
w momencie jak klikam na jakiś link zamistast:
127.0.0.1/strona/blog1/index.php
otwiera mi:
127.0.0.1/blog1/index.php
czy można to w pliku .htaccess ustawić aby doklejało cały adres?