简体   繁体   English

htaccess不会删除php扩展名

[英]htaccess doesn't removing php extensions

I have a php project running. 我有一个PHP项目正在运行。 I am running my project on localhost . 我在localhost上运行我的项目。 I want to remove php extensions from url in addressbar. 我想从地址栏中的网址中删除php扩展名。 I try several htaccess scripts but none worked some shows 404 not found error or doesn't work at all. 我尝试了几种htaccess脚本,但没有一个起作用,一些显示404找不到错误或根本不起作用。 directory where my php project is D:\\VertrigoServ\\www\\gotmation I am using this htaccess script 我的php项目所在的目录D:\\VertrigoServ\\www\\gotmation我正在使用此htaccess脚本

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

## hide .php extension
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php[\s?] [NC]
# RewriteRule ^ %1 [R=301,L]
 RewriteRule ^([^\.]+)$ $1.php [NC,L] 

# To internally forward /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{DOCUMENT_ROOT}/gta/$1.php -f
# RewriteRule ^(.+?)/?$ /gta/$1.php [L]
RewriteRule ^([^\.]+)$ $1.php [NC,L] 

I am newbie php programmer doesn't have much experience of this stuff. 我是新手,PHP程序员对此东西没有太多经验。 Any help will be appreciated. 任何帮助将不胜感激。

RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)\.php
RewriteRule ^ /%1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]

This must work... you might have any other issues... do you have permitted .htaccess in apache config file??? 这必须工作...您可能还有其他问题...您是否在apache配置文件中允许使用.htaccess ???

try: 尝试:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

## hide .php extension
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+(.+)\.php[\s?] [NC]
RewriteRule ^ /%1 [R=301,L]

# To internally forward /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{DOCUMENT_ROOT}/$1.php -f
RewriteRule ^(.+?)/?$ /$1.php [L]

These rules need to be in your document root . 这些规则必须位于您的文档根目录中

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM