- Home
- Categorie
- La Community Connect.gt
- Tutto sulla Community
- Url rewrite .htaccess e wordpress, dove sbaglio?
-
Url rewrite .htaccess e wordpress, dove sbaglio?
Ho aperto un altro 3d in Cms --> Wordpress, sperando di non essere bannato.
Nel mio blog uso url rewrite e la protezione delle immagini ( hotlink), e qui sotto vi posto il codice. Purtroppo non funziona tutto a dovere.
Il rewrite funziona, le immagini in parte.
alcune immagini le blocca e altre no, ma in entrambi i casi l'immagine sostitutiva non funziona
Dove sbaglio?<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?mioblog\.it/.*$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?google\.it/.*$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?google\.com/.*$ RewriteCond %{HTTP_REFERER} !^http://(feeds\.)?feedburner\.com/.*$ RewriteRule .*\.(gif|jpg|JPG|GIF|png|PNG)$ /images/no_external_images.gif [R,NC] RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php </IfModule>