我想在我的lcalhost中重定向url,因爲當用戶輸入:mystring.localhost/CI
到localhost/CI/Mycontroller/Myaction/mystring
in codeigniter。現在顯示Server not found並且表示瀏覽器Firefox無法在www.mystring.localhost
找到服務器。這個怎麼做 ?提前致謝。我有這個在我的.htaccess
:在codeigniter中重定向Url
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mystring\.localhost\CI\
RewriteRule ^(.*)$ http://localhost/CI/Mycontroller/myaction/mystring/$1 [R=301]
你試過了。 – 2013-05-06 13:01:13
我在.htaccess中有這個:RewriteEngine On RewriteCond%{HTTP_HOST}^string \ .localhost \ Tests \ RewriteRule ^(。*)$ http:// localhost/Tests/string/$ 1 [R = 301],但它似乎不工作。 – Crazyrubixfan 2013-05-06 13:05:38
不幸的是,這是不是在localhost工作,所以我嘗試在一個託管的網站,但它似乎也不工作 – Crazyrubixfan 2013-05-06 14:24:00