Home > Software design >  How to redirect react app to non www with htaccess file?
How to redirect react app to non www with htaccess file?

Time:12-26

I have one of react app working with apache server. Here is my .htaccess file

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]

and i want to redirect www.domain.com requests to domain.com, anyway how can i redirect requests www to non-www with htaccess ? Thanks!

CodePudding user response:

You can use this :

Options -MultiViews
RewriteEngine On
#www to non-www redirection
RewriteCond %{HTTP_HOST} ^www\.(. )$ [NC]
RewriteRule (.*) https://%1/$1 [NE,L,R=301]
#rewrite non-files to index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]
  • Related