0

I want to ask you guys, how to change subpages names? Like when I created my website first page is index.html (when I wrote it in taskbar and enter this website it shows www.example) next is gallery.html but when I go to gallery it show www.example/gallery.html and I want to be like this www.example/gallery without .html or even www.example/g. Thanks for helping me out!

1 Answers1

0

Use this .htaccess code. Rewrites www.myweb.com/test.php to www.myweb.com/test

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^.*$ $0.php [L]

RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.+)\.php$ $1 [L,R=301,NE]
Mardzis
  • 760
  • 1
  • 8
  • 21