我想简单地http://123chatgroups.info/testclient/123flashchat.swf?init_host=208.98.56.230&init_port=55527映射此网址http://123chatgroups.info/testclient。这里的参数是默认的,不会改变。
在浏览器上,我会写这个http://123chatgroups.info/testclient
我希望这个http://123chatgroups.info/testclient/123flashchat.swf?init_host=208.98.56.230&init_port=55527在这些静态参数的后端运行。
我必须使用htaccess执行此操作。
HELP真的很感激 感谢
答案 0 :(得分:1)
通过httpd.conf
启用mod_rewrite和.htaccess,然后将此代码放在.htaccess
目录下的DOCUMENT_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]