Google News
logo
PHP - Interview Questions
What is php.ini & .htacess file?
oth are used to make the changes to your PHP setting. These are explained below :
 
php.ini : It is a special file in PHP where you make changes to your PHP settings. It works when you run PHP as CGI. It depends on you whether you want to use the default settings or changes the setting by editing a php.ini file or, making a new text file and save it as php.ini.
 
.htaccess : It is a special file that you can use to manage/change the behavior of your site. It works when PHP is installed as an Apache module. These changes include such as redirecting your domain’s page to https or www, directing all users to one page, etc.
Advertisement