Category: Knowledge Base

What is the difference between Windows Authentication and SQL Authentication?

If you are new to the Microsoft SQL Server environment, you probably encountered the possibility to choose between Windows Authentication and SQL Authentication. SQL Authentication SQL Authentication is the typical authentication used for various database systems, composed of a username and a password. Obviously, an instance of SQL Server can have multiple such user accounts […]

How to redirect www requests to non-www URL

If you would like to redirect all the requests to the www version of an URL to the non-www version – for example http://www.geekpedia.com to http://geekpedia.com – you can do that by placing the following mod_rewrite rule in your .htaccess file: RewriteCond %{HTTP_HOST} ^www.geekpedia.com$ [NC]RewriteRule ^(.*)$ http://geekpedia.com/$1 [R=301,L] The redirect code 301 means Moved Permanently […]

Back To Top