【发布时间】:2013-04-30 05:48:24
【问题描述】:
我想在我的 lcalhost 中重定向一个 url,就像用户在 codeigniter 中键入:mystring.localhost/CI 到 localhost/CI/Mycontroller/Myaction/mystring 时一样。它现在显示未找到服务器,并说浏览器 Firefox 无法在 www.mystring.localhost 找到服务器。这个怎么做 ?提前致谢。我的.htaccess 中有这个:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mystring\.localhost\CI\
RewriteRule ^(.*)$ http://localhost/CI/Mycontroller/myaction/mystring/$1 [R=301]
【问题讨论】:
-
我的 .htaccess 中有这个:RewriteEngine On RewriteCond %{HTTP_HOST} ^string\.localhost\Tests\ RewriteRule ^(.*)$ localhost/Tests/string/$1 [R=301],但似乎不工作。
-
不幸的是,这在 localhost 中不起作用,所以我在托管站点中尝试过,但它似乎也不起作用
标签: php .htaccess codeigniter mod-rewrite url-rewriting