Reply To: Font doesn't work on redirection

Home Forums Use Any Fonts Font doesn't work on redirection Reply To: Font doesn't work on redirection

#5652
Vinicius
Guest

Hello!

I had tried before, I changed these lines of your code, but still did not work.

My .htaccess

# BEGIN WordPress

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

<FilesMatch "\.(ttf|otf|eot|woff)$">
	<IfModule mod_headers.c>
		Header set Access-Control-Allow-Origin "*"
	</IfModule>
</FilesMatch>

# END WordPress