Witam. Przeniosłem aplikację z serwera home.pl na nazwę.pl.
Po wszelkich zmianach konfiguracji pojawił się komunikat Http 500 - przypuszczam że problem jest z wpisami htaccess - ale nie bardzo wiem jak się za nie zabrać.
pozdrawiam
w folderze głównym htaccess: RewriteEngine On RewriteRule ^uploads/files/(.+)*$ public/uploads/files/$1 [L] RewriteRule .* public/index.php
SetEnv APPLICATION_ENV development RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ index.php [NC,L]
RewriteEngine On RewriteRule ^\.htaccess$ - [F] RewriteCond %{REQUEST_URI} ="" RewriteRule ^.*$ /public/index.php [NC,L] RewriteCond %{REQUEST_URI} !^/public/.*$ RewriteRule ^(.*)$ /public/$1 RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^.*$ - [NC,L] RewriteRule ^public/.*$ /public/index.php [NC,L]