制作基于PHP的网址重写器?

时间:2012-06-07 04:10:14

标签: php html

有没有办法制作基于php的网址重写器?我想为我公司的CMS制作一个URL重写模块。

例如:

http://www.seacen.org/v2/content.php?id=32&lang=1.htm

http://www.seacen.org/v2/content/32/1

1 个答案:

答案 0 :(得分:2)

创建一个.htaccess文件并在其中粘贴以下内容

Options +FollowSymLinks
RewriteEngine on
RewriteRule content/(.*)/(.*)/ content.php?id=$1&lang=$2.html

可能你的mod_rewrite已经启用了,但如果没有:

  • 如果您在共享主机上,请让您的主机支持人员启用它 你。
  • 如果你在VPS上或在本地运行你的测试服务器取消注释 httpd.conf LoadModule rewrite_module modules/mod_rewrite.s
  • 中的以下行