附加*到无扩展URL路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了附加*到无扩展URL路径相关的知识,希望对你有一定的参考价值。

  1. I, personally, avoid using extensions like .php in my URLs. For example:
  2.  
  3. http://www.example.com/contact
  4.  
  5. http://www.example.com/contact.php
  6.  
  7. Not only does the first URL look cleaner, but if I decided to switch languages, it would be less of an issue.
  8.  
  9. So how does one implement this? Here is the .htaccess code I found works best:
  10.  
  11. # If requested URL-path plus ".php" exists as a file
  12. RewriteCond %{DOCUMENT_ROOT}/$1.php -f
  13. # Rewrite to append ".php" to extensionless URL-path
  14. RewriteRule ^(([^/]+/)*[^.]+)$ /$1.php [L]
  15.  
  16. Source: http://www.webmasterworld.com/apache/3609508.htm
  17. answered Oct 21 '10 at 5:11
  18.  
  19.  
  20. community wiki
  21.  
  22. Adam

以上是关于附加*到无扩展URL路径的主要内容,如果未能解决你的问题,请参考以下文章

在 Gatsby 博客中的 url 路径中附加 %20

.htaccess 中的 301 重定向将旧文件路径/名称附加到新 url

使用 PHP 从 URL 字符串中获取文件路径/扩展名 [重复]

写一个函数,尽可能高效的,从一个标准 url 里取出文件的扩展名?pathinfo文件路径& parse_url解析url & basename路径中文件名

ActionScript 3 从url路径获取文件名并删除扩展名

Java--SpringMVC之url-pattern,静态资源;URL相对路径,绝对路径