Tagged Questions
0
votes
1answer
77 views
Apache server not able to read cookies from Browser
I have developed a login authentication page using cookies (with spring security) where for the first time, the user will need to get itself authenticated. Once the user gets successfully ...
1
vote
1answer
58 views
Apache - Reverse proxy
I am using Apache 2 and using the below virtual host definition in httpd.conf file
<VirtualHost *>
ServerName localhost
ProxyPass / http://localhost:8080/stackoverflow/
...
2
votes
0answers
241 views
RewriteBase has to change when using UserDir
I have setup our Apache server to use UserDir
This mean our urls are:
http://dev.server.com/~username/drupal/html/
Before our URLS were:
http://dev.server.com/drupal/html/
In the 2nd case I ...
1
vote
2answers
144 views
Redirect *.example.com to example.com
I have some valid subdomains in my httpd.conf file. Now how do I redirect anything that's not a valid subdomain to the main website? What I mean is, if I have a valid subdomain hello.example.com, it ...
0
votes
1answer
641 views
Most efficient and SEO & Google Analyitics Friendly way to redirect
I am looking for the most efficient way to redirect users to different web pages on my server using a keyword off of the main domain.
So http://www.example.com/keyword might take you to a longer URL ...
1
vote
1answer
2k views
What is wrong with this Apache httpd.conf file for vhosts?
What is wrong here?
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.apples.co.uk
DocumentRoot /var/www/apples.co.uk
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.apples\.co\.uk$ [NC]
...