我正在尝试将我的 url 中的 $_GET['p'] 变量更改为它自己的变量,但没有?=。
示例:
www.example.com/?p=about 到 www.example.com/about
问题是我的 htaccess 代码也会对子文件夹做出反应。
如果我想访问我的图像文件夹作为示例,我会得到:
www.example.com/images/ ?p=images
如何确保我的 .htaccess 忽略任何子文件夹?
这是我目前正在使用的 .htaccess
RewriteEngine on
RewriteBase /
# Rewrite page include
#RewriteRule ^(\w+)$ index.php?p=$1
抱歉我的解释不好。
-香蕉