Here i am gonna quickly explain you the difference between ScriptAlias and Alias
example:
ScriptAlias /cgi-bin / www/cgi-bin/
A request for http://mywebpage.com/cgi-bin/foobar would cause the server to run the script /www/cgi-bin/foobar. This configuration is essentially equivalent to:
Alias /cgi-bin/ /www/cgi-bin/
<Location /cgi-bin >
SetHandler cgi-script
Options +ExecCGI
</Location>
It is safer to avoid placing CGI scripts under the DocumentRoot in order to avoid accidentally revealing their source code if the configuration is ever changed.
The same is reflected in http://httpd.apache.org/docs/2.0/mod/ to know more ![]()
Incoming search terms:
- scriptalias httpd conf (10)
- httpd conf scriptalias (10)
- scriptalias in httpd conf (9)
- apache alias tutorial (9)
- httpd conf tutorial (4)
- httpd conf jquery (3)
- script alias httpd conf (3)
- scriptalias httpd conf php (2)
- scriptalias and alias (2)
- httpd conf alias example (2)
- httpd conf alias (2)
- ScriptAlias tutorial (2)
- lampp httpd scriptalias (2)
- apache alias http (2)
- httpd conf ScriptAliased (2)
- what is ScriptAlias (2)
- alias in httpd (2)
- alias httpd conf (2)
- what is the use of script alias in httpd conf file (2)
- wordpress ScriptAlias (2)
- use of Alias and ScriptAlias in httpd conf file (2)
- xampp alias tutorial (2)
- script alias in apache httpd conf (1)
- ScriptAlias httpd conf examples (1)
- script alias in httpd conf php (1)
- scriptalias httpd conf add php location (1)
- xampp apache scriptalias httpd conf (1)
- wordpress with alias httpd (1)
- ScriptAlias apache2 httpd conf (1)
- scriptalias apache2 (1)
- ScriptAlias examples tricks (1)
- use alias in httpd conf in php (1)
- two ScriptAlias in httpd conf (1)
- two script alias httpd conf (1)
- tutorial on httpd conf javascript (1)
- tutorial on httpd conf file (1)
- scriptalias tutorial apache2 (1)
- using apache Alias in perl script (1)
- scriptalias tomcat (1)
- scriptalias not working (1)
You will also be interested in ,
- make_sock: could not bind to address 0.0.0.0:80 windows apache not starting [Solved]
- Speed up wordpress using .htaccess part 2
- Apache AddHandler application/x-httpd-php not working?
- Set xampp:- Apache Mysql Filezilla Mercury Tomcat as a windows service and get xampp to start automatically on boot up
- Import large files in mysql using PhpMyAdmin
- Speed up wordpress using .htaccess part 1
- Fix 500 Internal Server Error In WordPress
- How to run or Configure Apache to use PHP as CGI
- How to install XAMPP
- Custom Error Pages Using .htaccess

