标签: apache .htaccess
我希望网址看起来像www.example.com/chat/91,但页面真的是www.example.com/room.php?id=91我在网上搜索apache rewrite example,但我没有看到使用此格式的任何示例,
www.example.com/chat/91
www.example.com/room.php?id=91
apache rewrite example
答案 0 :(得分:1)
在RewriteRule文件中使用此.htaccess:
RewriteRule
.htaccess
RewriteEngine On RewriteRule ^chat/([^/]*)$ /room.php?id=$1 [L]
确保在测试之前清除缓存。