-
-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Description
Hi, I've write a webapp locally over http... and goes great!
But uploading on a sever (where I can't manage apache or php configuration or check log file) each call fails with 404 error.
The difference, I suppose, is the protocol... Https.
This is my .htaccess:
`
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on
RewriteEngine On
RewriteRule ^(app|dict|ns|tmp)/|.ini$ - [R=404]
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L,QSA]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
`
It is correct also for https?! Thanks a lot
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels