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:
- apache alias tutorial (9)
- scriptalias httpd conf (9)
- httpd conf scriptalias (6)
- scriptalias in httpd conf (5)
- httpd conf tutorial (3)
- scriptalias order httpd conf (2)
- httpd conf alias example (2)
- How to add alise in httpd conf (2)
- httpd conf ScriptAliased (2)
- scriptalias and alias (2)
- lampp httpd scriptalias (2)
- difference scriptalias and alias http (2)
- use of Alias and ScriptAlias in httpd conf file (2)
- apache alias http (2)
- xampp alias tutorial (2)
- wordpress ScriptAlias (2)
- alias in httpd (2)
- what is the use of script alias in httpd conf file (2)
- what is ScriptAlias (2)
- alias httpd conf (2)
- scriptalias apache tutoriel (1)
- xampp apache scriptalias httpd conf (1)
- script sharp scriptalias (1)
- script alias in httpd conf php (1)
- script alias in apache httpd conf (1)
- scriptalias apache2 (1)
- ScriptAlias apache2 httpd conf (1)
- use alias in httpd conf in php (1)
- wordpress with alias httpd (1)
- using scriptalias in httpd (1)
- two ScriptAlias in httpd conf (1)
- two script alias httpd conf (1)
- tutorial on httpd conf file (1)
- setting script alias in httpd conf (1)
- ScriptAlias tutorial (1)
- scriptalias javascript (1)
- scriptalias httpd conf php (1)
- ScriptAlias httpd conf examples (1)
- scriptalias httpd conf add php location (1)
- script alias httpd conf (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
- Adding apache handlers in cpanel
- Import large files in mysql using PhpMyAdmin
- Fix 500 Internal Server Error In WordPress
- mod_proxy_balancer apache load balancing
- How To Avoid 404 Error Pages Easily and Reliably
- Speed up wordpress using .htaccess part 1
- Disable the TRACE and TRACK For More Security
- PHP Most Potentially Dangerous Feature, Secure It Today PHP Secrets
