【发布时间】:2012-02-22 22:25:29
【问题描述】:
我的主播是这样的
<a href="http://localhost/haveg/employer?id=7003&title=the-message-title">employer</a>
当我点击我想要到达的锚点时
http://localhost/haveg/employer/7003/the-message-title
到目前为止,我已经编写了这个 .htacess 代码
Options +FollowSymLinks
Options +Indexes
RewriteEngine on
RewriteBase /
RewriteRule ^haveg/employer/([0-9]+)/?(.*) haveg/employer.php?id=$1
只有当我输入 http://localhost/haveg/employer/7003/the-message-title 时才会打开页面,但我想在点击锚点后到达这里。
谢谢。
【问题讨论】:
标签: .htaccess mod-rewrite url-rewriting seo