1

我想用简单的 http://123chatgroups.info/testclient映射这个 url http://123chatgroups.info/testclient/123flashchat.swf?init_host=208.98.56.230&init_port=55527。这里的参数是默认的,不会改变。

在浏览器上我会写这个http://123chatgroups.info/testclient

我希望这个http://123chatgroups.info/testclient/123flashchat.swf?init_host=208.98.56.230&init_port=55527使用这些静态参数在后端运行。

我必须用 htaccess 来做这件事。

帮助将不胜感激谢谢

4

1 回答 1

1

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On

RewriteRule ^(testclient)/?$ /$1/123flashchat.swf?init_host=208.98.56.230&init_port=55527 [L,QSA,NC,NE]
于 2013-07-29T19:18:18.927 回答