有没有办法制作基于php
的网址重写器?我想为我公司的CMS制作一个URL重写模块。
例如:
http://www.seacen.org/v2/content.php?id=32&lang=1.htm
到
http://www.seacen.org/v2/content/32/1
答案 0 :(得分:2)
创建一个.htaccess
文件并在其中粘贴以下内容
Options +FollowSymLinks
RewriteEngine on
RewriteRule content/(.*)/(.*)/ content.php?id=$1&lang=$2.html
可能你的mod_rewrite已经启用了,但如果没有:
LoadModule rewrite_module
modules/mod_rewrite.s