.htaccess + node.js + express don't run correctly

Mjan

New Member
#1
I have two .htaccess at public.HTML level



the first one in function therefore which is currently used allows access to my member area but when I update it gives me Error page; And the 404 NotFound page is not managed although locally yes.







#BEGIN Cache-Control Headers

<IfModule mod_headers.c>

<FilesMatch "\.(ico|jpe?g|png|gif|swf|css|gz)$">

Header set Cache-Control "max-age=2592000, public"

</FilesMatch>

<FilesMatch "\.(js)$">

Header set Cache-Control "max-age=2592000, private"

</FilesMatch>

<filesMatch "\.(html|htm)$">

Header set Cache-Control "max-age=7200, public"

</filesMatch>

# Remove cache for dynamic resources

<FilesMatch "\.(pl|php|cgi|spl|scgi|fcgi)$">

Header unset Cache-Control

</FilesMatch>

</IfModule>

# END Cache-Control Headers





the second allows the updating of pages without errors and manages the 404 NotFound but does not allow access to the member area, concerning this .htaccess, is there a restriction on your side to be aware of?







<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteRule ^index\.html$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule. /index.html [L]

</IfModule>









Thank you for your observations. Locally, everything works correctly
 
Haut