Answers for "How to create web urls without extensions"

0

How to create web urls without extensions

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.html$ /$1 [L,R=301]
Posted by: Guest on March-26-2020
0

How to create web urls without extensions

<a href="http://www.mysite.com/page">linkhere</a>
Posted by: Guest on March-26-2020

Code answers related to "How to create web urls without extensions"

Browse Popular Code Answers by Language