Tagged Questions

0
votes
1answer
5 views

How to set the cache expiry period of a whole folder of jpgs using .htaccess

How can I set the cache expiry date of a whole folder of images using .htaccess? Right now, I only want the contents of one specific folder to be given a long cache expiry date. …
1
vote
1answer
17 views

URL Rewriting every URI except one?

I have a need to rewrite all URLs except /admin/ to index.html. How would I achieve that with .htaccess? I know I need RewriteConds and writes, but everything I have tried ends up …
1
vote
1answer
18 views

Make Domain-Specific folder redirect using .htaccess rules?

I recently moved a files/images folder on my site (a Drupal installation) from /sites/default/files/ to /sites/example.com/files/, but there are now a lot of 301 errors from extern …
0
votes
0answers
21 views

Trouble redirecting all pages in a folder to a page at root level.

I've searched, tried various examples, and none, other than creating an explicit list of redirect statements seems to work. The biggest issue I have is that, although I have access …
1
vote
1answer
12 views

Apache Hotlink Protection for Download Folder

Hello, I'm trying to avoid direct links from other sites to my site's downloadables. My exe,zip and msi files are under /files directory. How can I avoid direct links to them? T …
0
votes
0answers
7 views

.htaccess ignores directories

Hi, I have a problem with my .htaccess file. It ignores real directories and redirects directory requests to news.php like this: http://localhost/dir%5Fname/?category=dir%5Fname …
0
votes
0answers
9 views

Site images don’t refresh after setting expired headers on .htaccess

I have a site that uses a CSS sprite for all the images. I set the .htaccess file to set the expired headers to a future time as they recommend to improve site performance. Howeve …
0
votes
1answer
16 views

htaccess file adds the virtual directory address to the url

I wrote a script to add shtml extension to all requests that don't have it. This is it: Options +FollowSymlinks <IfModule mod_rewrite.c> RewriteEngine on RewriteCond …