Started 1 week, 6 days ago (2009-12-15 11:43:00)
by IanS
As you're on a shared system, it's unlikely that you can set the server time, or I'm misunderstanding you.
The way I'd suggest is to take the time from the server and add the offset required. Server time is
Boston, USA time.
Started 3 weeks, 3 days ago (2009-12-05 08:03:00)
by tpoynton
according to a google search,
not my own experience, create a new .htaccess
file for the child directory and put a single line with 'satisfy any' (no
quotes)
Started 1 month, 2 weeks ago (2009-11-12 22:04:00)
by tpoynton
do you have the following above your rewrites? I suspect you do.
Options +FollowSymlinks
RewriteEngine on
I have limited understanding of
htaccess, but I dont think you need the rewritecond's to do what you ask. if you want them for some reason, I'd focus on getting the rewriterules working first, then add those later. here's a link to some code that describes exactly what you want to...
Started 1 month, 1 week ago (2009-11-21 22:56:00)
by Autoload
Post a snippet from your .
htaccess file containing the 403 entry.
Your error documents should be at the top of the file... something like
Code:
ErrorDocument 404 404.html
ErrorDocument 403 403.html
Started 1 month, 1 week ago (2009-11-20 14:07:00)
by cacklebunny
I'm wondering if I actually need to accomplish this using a
mod_rewrite
rule instead of a mod_alias rule like RedirectMatch?
Started 2 months ago (2009-10-24 03:41:00)
by Croc Hunter
Started 2 months, 1 week ago (2009-10-22 13:37:00)
by Allan
I think
space between Header and ( is not necessary. Hence, the code can be:
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.mywebsite.com/catalog" );
?>
Also, removing the www. from the Location URL might help
Started 2 months, 1 week ago (2009-10-19 10:32:00)
by Dbrazzell
We dont support on the fly compression of the websites hosted on our servers
Quote from mod_deflate documentation.
"CPU-load: Compressing content on-the-fly uses
CPU time and saves bandwidth. Usually this is a great tradeoff given the speed of compression. There are ways to pre-compress static content and send over the compressed versions. This requires more configuration; even if it’s not...