首页 > 解决方案 > 如何使用 .htaccess 更改标签方向?

问题描述

我使用 .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.htaccessurl

解决方案


您正在寻找的正是:

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

.htaccess 中没有任何改变


推荐阅读