繁体   English   中英

删除所有 .php 扩展名后的 htaccess 无法重定向单个文件

[英]htaccess after removing all .php extensions can't redirect single files

我想使用 htaccess 从 URL 中删除所有 .php 扩展名,但也将example.com/profile.php?user=test重定向到example.com/profile/test以下代码将删除所有 .php 扩展名,但得到500由于单个文件 (profile.php) 重定向而导致的错误

<IfModule mod_rewrite.c>
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME}.php -f [NC]
RewriteRule ^ %{REQUEST_URI}.php [L]
RewriteRule ^(.*)$ profile.php?user=$1 [QSA,L]

</IfModule>

阿帕奇2日志:

 Request exceeded the limit of 10 internal redirects due to probable configuration error.

请添加此代码,它将用户参数重定向到 url。

<IfModule mod_rewrite.c>
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^profile/([^/]+)?$ profile.php?user=$1 [L,QSA]

</IfModule>

暂无
暂无

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

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