从.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.
# Sample 1: # Sample 2: RewriteCond /%{REQUEST_FILENAME}.php -f RewriteRule ^([a-zA-Z0-9_-s]+)/$ /$1.php
以上是关于从.htaccess中的URL中删除文件扩展名的主要内容,如果未能解决你的问题,请参考以下文章
尝试使用 .htaccess 文件删除 .php 扩展名时出现 403 禁止错误
使用 .htaccess 删除 .html URL 扩展时出现问题