gpt4 book ai didi

php - .htaccess 问题,我无法删除 .php

转载 作者:行者123 更新时间:2023-12-04 01:01:05 24 4
gpt4 key购买 nike

我需要你的帮助。我有这个网址:wwww.myurl.com/?verfy=CDPOR888wwww.myurl.com/index.php?verfy=CDPOR888

我想变成这样:wwww.myurl.com/CDPOR888

请帮忙,我怎样才能用 .htaccess 做到这一点?

我在 .htaccess 中试过这段代码但没有工作:

RewriteRule ^([^/]*)\.php$ /?perms_verify=$1 [QSA,L,NC]

但问题是 .php,当我删除它时出现错误。

注意:.htaccess 不区分大小写

最佳答案

你可以只使用这个规则:

RewriteEngine On

# request is not for a file
RewriteCond %{REQUEST_FILENAME} !-f
# request is not for a directory
RewriteCond %{REQUEST_FILENAME} !-d
# rewrite to destination path
RewriteRule ^([\w-]+)/?$ ?verfy=$1 [QSA,L]

关于php - .htaccess 问题,我无法删除 .php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68233713/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com