/ Gists / htaccess

Gists - htaccess

On gists

Přesměrování obrázku v dev na prod

htaccess

.htaccess #

	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_URI} ^/storage/
	#RewriteCond %{REQUEST_URI} !^/storage/images/(.*)/4[0-9]{4}
	RewriteCond %{HTTP_HOST} !darkovapoukazka\.ambi\.cz$ [NC]
	RewriteRule ^(.*)$ http://darkovapoukazka.ambi.cz/$1 [R=302,QSA,L]

On gists

Redirect from old domain to new

htaccess

htaccess #

  RewriteEngine On
  RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]
  RewriteCond %{HTTP_HOST} ^www.olddomain.com$
  RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]

On gists

Přesměrování www verze na bez www

htaccess

.htaccess #

	
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]