Welcome To Snipplr
Everyone's Recent Snippets Tagged apache
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Le hotlinking d'image consiste selon wikipédia : "à utiliser l'adresse d'un fichier publié sur un site web, le plus souvent une image, pour l'afficher sur un autre site, sur un blog, dans un forum, etc. En d'autres termes, au lieu d'enregistrer l'...
0
570
posted 16 years ago by sebus
Basic starting point for an Apache VirtualHost that points to a Symfony project being developed on MAMP
0
684
posted 16 years ago by cburyta
remove the www usually located at the beginning of the url :
www.url.com -> url.com
http://www.url.com/file.html -> http://url.com/file.html
http://www.url.com/directory/file.html -> http://url.com/directory/file.html
etc...
1
896
posted 16 years ago by bbnnt
Use Apache's mod_expires to explicitly set the expiration of a file by it's type. This will enable to browser to cache these static assets and greatly increase performance.
1
1069
posted 16 years ago by cbrant
Apache
301 Rewrite domain.co.uk to www.domain.co.uk like the search engine friendly developer you are!
Rewrite your urls for domain.co.uk to www.domain.co.uk including full url
3
1015
posted 16 years ago by catchamonkey
Rediccionamiento Apache desde una IP determinada y pidiendo una página concreta
0
701
posted 16 years ago by estebant
Redirecciona una petición HTTP de Apache a una URL, salvo los que tenga una IP determinada.
0
655
posted 16 years ago by estebant
ExpiresActive tells the apache2 to use the expires module.
ExpiresDefault specifies the expire date for all mime-types in this directory.
ExpiresByType specifies the expires date for the specified mime-type in this directory.
2
763
posted 16 years ago by CharlyBr
After installing WordPress an .htaccess file with the following code needs to be added to the wp-includes folder.
1
654
posted 16 years ago by m00min
When Apache under OS X throws 'Forbidden' errors on files under the ~/Sites path, and the error log report 'Permission denied: access to /somefile/blah failed because search permissions are missing on a component of the path', check a missing Other E...
1
898
posted 16 years ago by cczona
Forward users from your alias domains to your main domain automatically. Nice to have if your site has got one or more aliases. Notice that all the domain aliases have [NC,OR] at the end of the line, while the last alias and_so_on.com just has [NC]....
6
913
posted 16 years ago by torkil
Using mod_rewrite in Apache to rewrite urls and force removal of www in urls. Good for letting search engine spiders in the right door...
Insert the code in your .htaccess-file in your website's root folder.
3
955
posted 16 years ago by torkil
Using mod_rewrite in Apache to rewrite urls and force users to use www in urls. Good for letting search engine spiders in the right door...
Insert the code in your .htaccess-file in your website's root folder.
5
1060
posted 16 years ago by torkil