Horje
removing filepath from url using htaccess Code Example
removing filepath from url using htaccess
#remove html file extension-e.g. https://example.com/file.html will become https://example.com/file
RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
removing filepath from url using htaccess
#remove php file extension-e.g. https://example.com/file.php will become https://example.com/file 
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [NC,L] 




Html

Related
accept only image files upload html Code Example accept only image files upload html Code Example
sample text Code Example sample text Code Example
html tab icon Code Example html tab icon Code Example
open link in  new tab Code Example open link in new tab Code Example
how open link in  new tab Code Example how open link in new tab Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13