Tagged Questions
1
vote
2answers
1k views
HTTPS To http redirect issue. How to overcome?
Have already seen suggests on how to rewrite https to http. currently using this technique :
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^(.*)$ http://www.mysite.com/$1 [L,R=301]
RewriteRule ^(.*)$ ...
1
vote
2answers
259 views
WordPress mod_rewrite redirect specific folders
As a new user, I'm not allowed to post more than two hyperlinks here. So I have added a space after every http (ignore them and read as full URLs).
System: Debian Etch, Apache 2.2
I have a WordPress ...
6
votes
2answers
643 views
Does using Litespeed instead of Apache speed up wordpress?
I've read that Litespeed is alot faster than apache. I use mostly wordpress and joomla sites and am looking for a new server. Will i see a significant increase in speed of wordpress being on a ...
0
votes
2answers
415 views
Monitoring load/resource drain of individual scripts on apache
We have a website and for some reason lately its been grinding our server to a halt. It has had a spike of traffic, but even still that spike is only possibly 1k or 2k.
We installed eAccelerator PHP ...
0
votes
1answer
824 views
How can I fix an Apache redirect loop
I have a strange Apache/WordPress redirect loop that I can't seem to figure out.
Here is the relevant logs and other info: http://pastebin.com/E1afW2vw
It seems that the page request gets made, and ...
3
votes
1answer
564 views
Apache, www-data and custom user permission
I'm running an ubuntu server with apache and I have web directory which is owned by the user www-data and the group www-data. WordPress works great in this directory. It can auto update and I can ...
2
votes
1answer
198 views
What to set for AllowOverride & Options
What is normally used as settings for both production or development servers for settings AllowOverride & Options?
I will be needing to use .htaccess for WordPress so things like mod_rewrite etc
1
vote
2answers
235 views
What are some good Apache settings to use with wordpress?
My server has 756m of RAM. Every few days I get
[error] server reached MaxClients setting, consider raising the MaxClients setting
1
vote
3answers
101 views
Question about mod_rewrite rule for redirecting failing pages
I'm setting up a mod_rewrite rule that redirects failing pages to a custom Page Not Found page. This is with WordPress. I've used a online tutorial at the Apache and so far my rules look like this:
...