使用htaccess隐藏文件扩展名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用htaccess隐藏文件扩展名相关的知识,希望对你有一定的参考价值。

  1. RewriteCond %{REQUEST_FILENAME} !-d
  2. RewriteCond %{REQUEST_FILENAME}.php -f
  3. RewriteRule ^(.*)$ $1.php
  4.  
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6. RewriteCond %{REQUEST_FILENAME}.html-f
  7. RewriteRule ^(.*)$ $1.html

以上是关于使用htaccess隐藏文件扩展名的主要内容,如果未能解决你的问题,请参考以下文章

如何在.htaccess中隐藏.php扩展名[重复]

htaccess删除除了一个特定文件夹之外的php扩展名

使用 .htaccess 删除文件扩展名会导致错误

使用 .htaccess 文件删除 .php 文件扩展名

尝试使用 .htaccess 文件删除 .php 扩展名时出现 403 禁止错误

.htaccess 文件 - 删除 .php 扩展名“服务器错误”[重复]