Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
amigos bom dia, sou novato com cake e estou com um problemão
tenho a seguinte estrutura LINUX
apache2
diretorio onde está o meu projeto em maquina local
/www/projeto
Meus HTACCESS está configurado da seguinte forma /www/projeto .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
**************************************************************************
/www/projeto/app .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
e por ultimo /www/projeto/app/webroot
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
e local tá funcionando tudo normal ai começa o problema mando subir para meu servidor de hospedagem (o rewrite já está ativo)
coloco em um subdiretorio
/public_html/dworker/*
o htaccess do root continua do jeito que veio...só descompactei tudo aqui dentro (/public_html/dworker)
mais não funciona
ai criei um sub dominio apontando diretamente para dworker e tambem não funciona aparece a seguinte mensagem..
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@teste.dworker.com.br and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
alguem sabe me dizer o que é o problema?????
Carregando comentários...