从.htaccess中的URL中删除文件扩展名

Posted

tags:

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

This example shows you how to remove file extension from URLs using .htaccess file directives. Remember, that "mod_rewrite" works only on Apache server. Before trying please be sure that you are working on Apache server and the "mod_rewrite" module/extension is enabled.
  1. # Sample 1:
  2. RewriteRule ^about$ about.php [L]
  3.  
  4. # Sample 2:
  5. RewriteCond /%{REQUEST_FILENAME}.php -f
  6. RewriteRule ^([a-zA-Z0-9_-s]+)/$ /$1.php

以上是关于从.htaccess中的URL中删除文件扩展名的主要内容,如果未能解决你的问题,请参考以下文章