子页面名称如何更改
Subpages names how to change
想请教各位,如何更改子页面名称?就像我创建我的网站时,第一页是 index.html(当我在任务栏中编写它并进入该网站时,它显示 www.example)接下来是 gallery.html 但是当我去画廊时它显示 www. example/gallery.html,我想像这样 www.example/gallery 没有 .html 甚至 www.example/g。谢谢你帮我!
使用此 .htaccess
代码。将 www.myweb.com/test.php
重写为 www.myweb.com/test
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^.*$ [=10=].php [L]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.+)\.php$ [L,R=301,NE]
想请教各位,如何更改子页面名称?就像我创建我的网站时,第一页是 index.html(当我在任务栏中编写它并进入该网站时,它显示 www.example)接下来是 gallery.html 但是当我去画廊时它显示 www. example/gallery.html,我想像这样 www.example/gallery 没有 .html 甚至 www.example/g。谢谢你帮我!
使用此 .htaccess
代码。将 www.myweb.com/test.php
重写为 www.myweb.com/test
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^.*$ [=10=].php [L]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.+)\.php$ [L,R=301,NE]