I've updated 2.0.16 on 2.3.
Redirect doesn't work for old images and thumbnails.
My .htaccess is
RewriteBase /
didn't helped.
Redirect doesn't work for old images and thumbnails.
My .htaccess is
Code:
ServerSignature Off
Options -Indexes -MultiViews
Options +FollowSymLinks
RewriteEngine On
# If you have problems with the rewrite rules remove the "#" from the following RewriteBase line
# You will also have to change the path to reflect the path to your Chevereto installation
#RewriteBase /chevereto
RewriteRule ^api$ api.php [L]
RewriteRule ^images/(\w*\.)(jpg|png|gif)$ images/old/$1$2 [L] #legacy images
RewriteRule ^images/thumbs/(\w*\.)(jpg|png|gif)$ images/old/$1th.$2 [L] #legacy thumbs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
RewriteBase /
didn't helped.