【问题标题】:Remove .php extension from the URL从 URL 中删除 .php 扩展名
【发布时间】:2012-08-27 10:36:25
【问题描述】:

我想从 URL 中删除 .php 扩展名,以便像 http://mysite.com/abc.php 这样的 URL 将重定向到 http://mysite.com/abc 我如何在 apache 中使用 .htaccess 来做到这一点

【问题讨论】:

标签: apache mod-rewrite


【解决方案1】:
RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME}\.php -f 
RewriteRule ^(.*)$ $1.php

你可以很容易地谷歌它.....

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2022-01-21
    • 1970-01-01
    • 2023-04-05
    • 1970-01-01
    • 2020-08-11
    相关资源
    最近更新 更多