gpt4 book ai didi

.htaccess - htaccess+modrewrite 问题

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

我希望每个用户都有这样的个人资料网址:

www.example.com/username

我创建了这个 htaccess:

RewriteEngine on
RewriteRule ([^/]+) profile.php?username=$1 [L]

但我在 css 和 js 文件中遇到错误。

我必须在 htaccess 中写什么?

最佳答案

您通常应该排除所有真实文件和目录,因为这将处理 css/js/images/您想要提供的任何其他内容:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)$ profile.php?username=$1 [L]

关于.htaccess - htaccess+modrewrite 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6245190/

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