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