Apache
Monday, March 17th, 2008
Apache Web Server originated from a series of "patches" to the NCSA Web server. As benchmark comparisons provided by Netcraft surveys show, its use has grown steadily over the last five years and it is the most popular Web server in use today. One of the key features of Apache ...
Posted in Apache | No Comments »
Friday, August 31st, 2007
# If we have neither mod_ssl nor mod_rewrite
# then let's simply deny the access:
deny from all
# If we have mod_rewrite
# then let's redirect to https version of requested page
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
# else (if we have mod_ssl)
# let's make sure that we require SSL
SSLRequireSSL
# Finally, if anything went ...
Posted in Apache, Linux | No Comments »
Thursday, August 30th, 2007
301 Redirect is interpreted as "permanently moved". Setting a 301 redirect is the best and Search Engine Friendly method for redirecting a webpage. By using 301 redirect, you can move your files around, change file names and redirect your pages without losing your search engine rankings.
301 Redirect in Apache - ...
Posted in Apache, Asp.Net, CGI Perl, Cold Fusion, IIS, JSP, Linux, PHP, Ruby On Rails | No Comments »