我如何使用.htaccess更改标签方向? [重复]

问题描述 投票:-1回答:1

这个问题在这里已有答案:

我用.htaccess来改变我的网址

http://example.com/profile.php?user_id=115451

http://example.com/profile/115451

这是我的.htaccess它对我有用。

RewriteEngine On
RewriteRule ^profile/([^/]+)/?$ profile.php?user_id=$1 [L,QSA]

但在我的profile.php中有这样的标签

<a href='./'>Home</a>

当我点击这个链接它应该转到http://example.com/但它转到http://example.com/profile/

与img标签相同的问题,http://example.com/profile/115451上的图片无法加载,

但是在http://example.com/profile.php?user_id=115451上没问题。

php .htaccess url
1个回答
0
投票

您正在寻找的是:

<a href='/'>Home</a>

.htaccess无变化

© www.soinside.com 2019 - 2024. All rights reserved.