Reputation: 1083
I want to open a webpage in web-browser
www.somesite.com/myPage.html
I've created myPage.html by myself, plain html
I want to open this page via
www.somesite.com/myPage
I've placed myPage.html
in public_html
folder in my cpanel
Upvotes: 1
Views: 65
Reputation: 3738
Option1
Keep your file myPage.html
in public_html
you need to create a .htaccess
in public_html
and add this into the file:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
Option 2
myPage
myPage.html
to index.html
index.html
to myPage
folderNote:- Don't use both methods at once. Remove all the data from .htacess
file before using Option 2
Upvotes: 1