【发布时间】:2015-11-04 23:17:25
【问题描述】:
我正在尝试通过例如:
www.example.com/quote/20.html
到:
www.example.com/quote.php?id=20
mod_rewite 开启且当前规则似乎没有通过变量:
Options +FollowSymLinks
Options -Indexes
# STRONG HTACCESS PROTECTION
<Files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</Files>
RewriteEngine on
RewriteRule quote/(.*).html quote.php?id=$1
RewriteRule topic/(.*)/(.*).html topic.php?topic=$1&page=$2
【问题讨论】:
标签: apache mod-rewrite url-rewriting friendly-url