Answers for "how to enable php extension"

PHP
1

php enable extension ubuntu

### Syntax
phpenmod MODULE_NAME

### Enable mbstring php module
phpenmod mbstring
Posted by: Guest on October-29-2020
0

how to excute php file without extension in php

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
Posted by: Guest on November-30-2020

Code answers related to "how to enable php extension"

Browse Popular Code Answers by Language