【发布时间】:2011-04-24 09:27:22
【问题描述】:
我使用重定向规则来解码查询,例如
user/34 到 user.php?id=34
问题现在是在 user.php 中使用 relative urls
image.png 现在相对于不存在的文件夹用户进行搜索
我现在想要的是将/ 附加到每个相对路径。
我试过了
RewriteCond %{REQUEST_URI} !^/(.*)$
RewriteRule ^(.*)$ /$1
但这不起作用
【问题讨论】:
标签: html apache mod-rewrite