Answers for "remove file extention"

0

remove file extention

RewriteEngine on


RewriteCond %{THE_REQUEST} /([^.]+).html [NC]
RewriteRule ^ /%1 [NC,L,R]

RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]
Posted by: Guest on January-06-2022

Code answers related to "remove file extention"

Browse Popular Code Answers by Language