www.tinynerdgames.com/blog.html
我该怎么办?
任何答案都非常感谢,谢谢。
答案 0 :(得分:0)
您可以使用.htaccess文件截断文件URL。
导航到cPanel中的文件管理器,然后找到.htaccess文件。注意:必须启用隐藏文件才能查看此文件。
在htaccess文件中,粘贴以下代码;
#remove html file extension
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
现在将链接从https://tinynerdgames.com/blog.html更改为https://tinynerdgames.com/blog,这应该可以正常工作。
答案 1 :(得分:0)
使用FTP,您将登录到您的网站,创建名为blog
的目录,将blog.html
文件移至新目录,并将blog.html
重命名为index.html
。