Answers for "default htaccess php"

19

wordpress .htaccess file code

# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress
Posted by: Guest on May-14-2020
4

why we use .htaccess file in php

These .htaccess files can be used to alter the configuration of the Apache Web Server software to enable/disable additional functionality and features that the Apache Web Server software has to offer
Posted by: Guest on July-03-2020

Browse Popular Code Answers by Language