我想在我的 lcalhost 中重定向一个 url,就像用户在 codeigniter 中键入 : 时一样mystring.localhost/CI
。localhost/CI/Mycontroller/Myaction/mystring
它现在显示 Server not found 并说浏览器 Firefox 找不到服务器www.mystring.localhost
。这个怎么做 ?提前致谢。我有这个.htaccess
:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mystring\.localhost\CI\
RewriteRule ^(.*)$ http://localhost/CI/Mycontroller/myaction/mystring/$1 [R=301]