Tagged Questions

Apache configuration questions

learn more… | top users | synonyms

5
votes
6answers
2k views

Can I block search crawlers for every site on an Apache web server?

I have somewhat of a staging server on the public internet running copies of the production code for a few websites. I'd really not like it if the staging sites get indexed. Is there a way I can ...
4
votes
2answers
71 views

Do these configuration changes suit my needs?

I want to get a reasonably large file (around 45-50M) from user of my application, and then move that file to some other server. I have done following changes to configuration files, can someone ...
4
votes
1answer
2k views

Ubuntu PHP5/Apache2 - Displaying 500 error instead of error message

The following script is not outputting error messages to the browser. Instead it results in an HTTP Error 500 response. <?php error_reporting(E_ALL); ini_set('display_errors', 'On'); phpinfo(); ...
4
votes
2answers
428 views

Creating SubDomains to Absolute Paths with .htaccess

Hey, My host is absolutely terrible. For some odd reason creating a subdomain in cPanel simply does not work, and their support lines are always busy. I thought I could get around this by using ...
4
votes
2answers
2k views

mod_rewrite or mod_alias?

I have a server, it's httpd.conf already has some "RedirectMatch permanent" directives in it. I'm not that familiar with mod_alias, I've only ever used mod_rewrite. What's the basic difference? I ...
3
votes
1answer
133 views

Django site very slow to load after restart or period of inactivity

I'm running a Django site on Apache, and am experiencing very slow intial page loads after a period of inactivity (about 1 hour). I can replicate by leaving for an hour, or bouncing the server. ...
3
votes
2answers
494 views

sites-available (apache) and httpd.conf for WAMP - making XXXXX.domain.com automatically direct

I currently have this in my httpd.conf file in WAMP: NameVirtualHost 127.0.0.1 <VirtualHost 127.0.0.1> ServerAlias *.dev.co.uk UseCanonicalName Off VirtualDocumentRoot ...
3
votes
1answer
390 views

HTML5 Boilerplate .htaccess vs httpd.conf

I'd like to start off by saying I am really new to working with apache, so please don't hold it against me. The HTML5 Boilerplate comes with a .htaccess file, but I'm using django (on webfaction) and ...
3
votes
1answer
751 views

Apache mod_rewrite works in .htaccess but not httpd.conf

I'm experimenting with mod_rewrite for the first time (I'm a web newbie, but trying to learn). I'm trying to get bob.html to redirect to alice.html (read: URL stays the same, page content is ...
3
votes
2answers
118 views

More Eyeballs on my Poor mod_rewrite Attempt Please

We're changing the way users embed images in their blogs, but I need to make sure previously embedded images are still displayed. I'm trying to redirect legacy image embed links to either a static ...
3
votes
3answers
2k views

PHP / Apache how to set session.cookie_domain from outside php.ini

I need to restrict cookies to my www subdomain, this works by me adding the line session.cookie_domain = www.example.com in the php.ini file. However I have a number of virtual hosts on my server so I ...
3
votes
4answers
1k views

How to set up virtual hosts on Apache 2.2

Can anyone direct me to a good tutorial on how to set up virtual hosts using Apache 2.2? Here's my situation: I have Apache running on my laptop and I want two websites-- one on port 80 and one on ...
3
votes
3answers
3k views

Apache 2.2 ignoring VirtualDocumentRoot VirtualHosts?

I have several domains that I would like to have wildcard subdomains enabled for through mod_vhost_alias Included in my httpd.conf I have the following generalized rules: <VirtualHost [ip ...
3
votes
3answers
567 views

How can I setup Apache to serve SVN with this particular URL configuration?

I have a VPS and i'm trying to host several SVN projects. I'd like the URL paths to be like this: http://svn.domain.com -> Welcome HTML page (at /var/www/svn.domain.com/httpdocs/index.php) ...
3
votes
1answer
717 views

How do you debug a mod_perl2 module without restarting?

Environment: Apache/2.2.11 (Win32) mod_apreq2-20051231/2.6.2-dev mod_perl/2.0.4-dev Perl/v5.10.0 Situation very similar to what's described in this discussion list post, except for being on win32. I ...
2
votes
1answer
32 views

Apache rewrite all urls except those beginning with certain paths

I'm trying to redirect all requests except those beginning with certain paths. for example, http://www.example.com/mypath1 shouldn't redirect http://www.example.com/mypath2 shouldn't redirect ...
2
votes
2answers
40 views

Run two php application in two different ports in apache

i have two sample application in the same machine. it is PHP. i am in need to develope application that supports cross domain cookies. so ,now i am trying to run two application in different port in ...
2
votes
1answer
68 views

Can't access files in a subdirectory using Apache server

I have an Apache 2.2.21 server installed on my Windows 7 machine. My site is up and my scripts from /scripts subdirectory are working but when I try to load icons from /icons I get a 403 forbidden ...
2
votes
1answer
159 views

Forward connection from Apache on 80 to Tomcat 6 on 8080 with mod_proxy [closed]

I've a domain www.example.com, now I'm trying to forward the browser connection to http://myserveripaddress:8080/MyAppName, in order to let the user surf MyApp when they type www.example.com on their ...
2
votes
1answer
53 views

apache ssl redirect to a sub url path with FQDN intact?

What I am trying to accomplish in Apache HTTP server (httpd.conf) is to redirect a user from a default page http://www.abc.com/ to https://www.abc.com/xxx?var1=1&var2=2 which also keeps FQDN ...
2
votes
1answer
182 views

Apache VirtualHost slow lookup

I finally managed how to configure properly httpd.conf for my virtualhost needings. This is the relevant part of httpd.conf file NameVirtualHost *:80 <VirtualHost *:80> ServerName localhost ...
2
votes
1answer
76 views

http.conf redirect example.com/foo/bar to example.com/foo?id=bar

I am trying to create a dynamic page who's contents are determined by a variable passed to it, but I want the url to be nice. Basically I want to have a single index file in the directory /foo that ...
2
votes
1answer
102 views

Wildcard in URL (mod_alias or mod_rewrite)

I need to have URLs such as mydomain.com/whatever, where "whatever" can be any arbitrary string, all call the same php file where it sorts out what to display (or displays a 404). However, I want ...
2
votes
1answer
91 views

How do I Alias in Apache properly? Trying to get to another drive in localhost with PHP

I installed Appserv and made a .php: D:/Appserv/www/x/y/file.php Then I have a folder, like E:/foldie. I want my .php to mess with that folder. I found this online: <IfModule mod_alias.c> ...
2
votes
2answers
110 views

Firefox work offline with virtual host

So I have an offline website on my PC that I want to test in Firefox. I would like to do it in the offline mode. The problem is, I have defined a virtual host for the website in httpd.conf Apache ...
2
votes
0answers
260 views

OSX + Apache2 + httpd.conf + hosts + .htaccess = not working

On my Mac, I'm trying to activate htaccess rewrite rules on a local php project. Here's my configuration : I'm using OSX 10.6.7, Apache2 is running, Php5 is activated. My project location: ...
2
votes
4answers
121 views

Change default url php

How to change the default url. eg www.example.com/index.php -> www.example.com now i want to set it to www.example.com/test.php. Should i make changes in php.ini?
2
votes
0answers
504 views

How to use the SetEnvIf in this situation?

I try to put a X-FRAME-OPTIONS to the http header to prevent the Clickjacking attack. If I set the header in the httpd.conf or .htaccess file like this, it works. Header set X-Frame-Options ...
2
votes
1answer
608 views

Access Apache VirtualHost from any computer on LAN?

I have wamp setup with quite a few websites setup as virtual hosts like this in httpd.conf <VirtualHost 127.0.0.1> ServerName project1.local DocumentRoot "c:/wamp/project1/" ...
2
votes
1answer
1k views

Using .htaccess with FastCGI

I've readed that when using FastCGI to run PHP the .htaccess file included into the main directory of my site is ignored (right now i have the .htaccess file located in ...
2
votes
2answers
604 views

mod_xsendfile for Win x64?

I'm trying to install the mod_xsendfile Apache Module on Windows (7) x64 (using Apache 2.2) -- yes I'm doomed from the get-go, I know :-). Apparently there is : a) No Win x64 binary for ...
2
votes
1answer
239 views

Symfony with only FTP access

I'm currently developing on my local pc, to which I have complete access of course. However to my production server I have only FTP access. Now, this step ...
2
votes
1answer
83 views

How can I use a clean URL only in a subfolder of my website?

I have a web site http://www.mydomain.com Here I have created a sub folder http://www.mydomain.com/products. I want to change all the page inside the product folder as clean URL. I know .htaccess ...
2
votes
1answer
79 views

Apache loads any file that begins with the same string as used in url. How to prevent this?

If I point to: mywebsite.com/search and there is a file called search.php or search.html or search.inc.php or search.whatthehell.php in website's directory, Apache will point to that file instead of ...
2
votes
1answer
118 views

Shared httpd.conf

I'm trying to share a single httpd.conf file across multiple OS X machines. I'm using Dropbox to manage the file and make it available to both machines. The problem I'm having is that the httpd.conf ...
1
vote
1answer
48 views

php not executable on server

So I am installed php but now whenever I go to the url in the browser, e.g. test.php, it is not an executable file and it prompts me to download it. I have this in my httpd.conf file: AddType ...
1
vote
2answers
37 views

symfony apache configuration error, controller not getting called

I configured my /etc/apache/httpd.conf as said in the getting started tutorial : # Be sure to only have this line once in your configuration NameVirtualHost 127.0.0.1:8080 # This is the ...
1
vote
1answer
135 views

“ExpiresDefault access” vs. “ExpiresDefault access plus zero seconds”

In an Apache config file or a .htaccess file, is there any difference between ExpiresDefault "access" and ExpiresDefault "access plus zero seconds"? Are they the exactly the same? Is the second ...
1
vote
3answers
64 views

Regular Expression - minus/hyphen character issue

I have a url that contains the following /4-new-south-wales/499-some-category.html I would like to remove using mod_rewrite the numeric and the following hyphen. I have the following rule ...
1
vote
1answer
44 views

Apache - Can no longer use mod_rewrite after adding virtual directory

My apache server is set up with a very basic configuration. I used to serve just one website from apache, let's call it example.com. Within the httpd.conf file, I had some code to force the website ...
1
vote
2answers
84 views

regular expression which start with “/start/” but does not end with “end1” or “end2”

I was trying to formulate a regular expression to be used with "Location" directive of Apache web server configuration inside httpd.conf file. <Location ~ "/start/.*(?!end1|end2)$"> Order ...
1
vote
2answers
107 views

PHP Fatal Errors not in Error_Log, How to enable?

For some reason fatal errors do not appear in my server's error_log and I cannot seem to enable this level of logging. Standard errors, php warnings and php notices however are all logged. Logfile: ...
1
vote
1answer
60 views

ScriptAlias having no effect on ability to execute .cgi files

I have enabled alias_module and cgi_module in my apache 2.2 installation. I have added a section: <IfModule alias_module> ScriptAlias /digin-cgi/ "/opt/openbdjam/webroot1/push20/digin-cgi/" ...
1
vote
1answer
34 views

Configure multiple sites in jboss application server

I am using a jboss application web server, and have war files deployed already and running a website . how do i configure another site using httpd.conf and jboss to run one more site in the same jboss ...
1
vote
0answers
36 views

Httpd.Conf seems to reject this anyone maybe help me why? WAMP based simple PHP site

I inserted this into my Httpd.conf file just below WAMP Includes and above the Virtual hosts. Any reason why this doesn't work <Directory "c:/webs/StaticSites"> Options Indexes FollowSymLinks ...
1
vote
1answer
71 views

Apache searches for old DocumentRoot after editing the config file and restarting it

I'm using Arch Linux 3.0-ARCH. I've changed my DocumentRoot in /etc/httpd/conf/httpd.conf from /srv/http to /var/www. Then I issued this command: % sudo /etc/rc.d/httpd restart :: Restarting Apache ...
1
vote
1answer
367 views

Apache Dynamic Virtual Hosts - 403 Forbidden

I am trying to configure the Apache server on my MacBooks (running Lion OS) to handle dynamic virtual hosts. I have managed to get it "working" but I whenever I access the domain I get a 403 Forbidden ...
1
vote
1answer
135 views

Case-insensitive Location

I am using VisualSVN Server that installs an Apache server. In the below example <Location /MyIISWebSite> ProxyPass https://my-domain.com:8443/MyIISWebSite ProxyPassReverse ...
1
vote
1answer
151 views

How To include external httpd.conf in Apache configuration based on Environment Variable

I'd like to include one or another external httpd.conf file in my main Apache httpd.conf based on an Environment Variable that is set externally. So I would like to do something like: if ...
1
vote
1answer
117 views

Switching two virtual host (configured with httpd.conf) using .htaccess

I have configured tow virtual host for two domains www.domain1.com and www.domain2.com: <VirtualHost *> ServerName prod.domain.com ServerAlias www.domain1.com DocumentRoot ...

1 2 3 4