Category: Network

2

Cognizant Outlook configuration

1. Open the Mail option in Control Panel – if you’re running 64-bit, please go to Additional Options and select “View 32-bit Control Panel Items” to uncover the Mail option. 2. Click on E-mail...

Trim .php extension using .htaccess 0

Trim .php extension using .htaccess

Trim your .php extension in your web application using .htaccess RewriteEngine on RewriteRule ^$ index.php RewriteRule ^([a-zA-Z0-9\-\_/]*)/$ $1/index.php RewriteRule ^([a-zA-Z0-9\-\_/]*)$ $1.php

.htaccess password 0

.htaccess password

To protect the folder with the Authentication with the help of .htaccess follow the below steps: create .htaccess file with below content AuthUserFile “/home/domain/.htpasswds/passwd” AuthType Basic AuthName “ohm” require valid-user Go to root folder...