【发布时间】:2017-06-30 06:39:26
【问题描述】:
我的网址如下所示:
website.com/proj1/post.php?id=130
我想改写成:
website.com/proj1/post/130
以下 htaccess 规则为我重写了 url:
RewriteEngine on
RewriteRule ^post/([^/.]+)/?$ /proj1/post.php?id=$1 [L]
但问题是规则也会影响内部网址。
例如重写
<img src="/images/ex.jpg" />
到
<img src="post/images/ex.jpg" />
有没有办法排除内部链接?
【问题讨论】:
标签: php apache .htaccess mod-rewrite url-rewriting