Apache (HTTP Server) /əˈpætʃiː/ is a modular cross-platform web server software with a large variety of features(called modules) including SSL, compression, log, proxy and server-side programming language interfaces like Perl, Python, Tcl, and PHP.
0
votes
2answers
424 views
How to setup apache2 redirect but keep domain name?
I run a small community web site where users can each get a free blog. The blog address is always something like http://mydomain.com/blogname
One user have bought his own domain and want to ...
2
votes
2answers
2k views
Apache logs: “::1 … ”OPTIONS * HTTP/1.0" 200 -
Just looking at logs of a not-so-busy site on one of our Apache servers and notice tons of these in the log:
::1 - - [15/Apr/2011:12:11:40 -0700] "OPTIONS * HTTP/1.0" 200 -
::1 - - ...
0
votes
1answer
176 views
Force hostname for request
I have a web server running Apache HTTPD 2.2 serving as a reverse proxy for my IIS 7.5 server.
This worked fine, until I wanted to use OpenID (using DotNetOpenAuth). Since DotNetOpenAuth throws an ...
1
vote
1answer
256 views
Adding custom handlers
I have a number of D language programs (.d extension) and a compile-and-run tool (rdmd)--I'd like to configure Apache (version 2.2) to handle URLs such as "mysite.com/d/hello.d" by running rdmd with ...
1
vote
2answers
1k views
apache domain redirect to subfolder
I have a hosting account with godaddy. Its a linux system running apache. The way they do their setup is your primary domain is the root folder. When you add a subdomain its in a subfolder of the ...
2
votes
2answers
95 views
Virtual hosting
I want to use domains like xxx.abc.domain.tld.
The xxx is my folder to access. I tried it with the rewrite rules, but I can't get it working, because I don't know how to get the part xxx from the ...
2
votes
2answers
413 views
Redirecting a CSS file based on .htaccess rules
I'm trying to hack the css files on OSTicket by replacing them with my own custom ones when a specific URL is accessed. The URL that is accessed for this example is ...
2
votes
1answer
209 views
Forward the request to other backend system on Apache webserver?
I want to forward my domain request to my backend systems without creating subdomain.
For example: xyz.com my domain, when anyone enter 1.xyz.com request forward to 10.0.x.x.
I want to host my all ...