我想要
domain.com/whatever
指向
domain.com/index.php/view/whatever
用户仍会在浏览器中看到domain.com/whatever
,但会在幕后浏览domain.com/index.php/view/whatever
。
答案 0 :(得分:1)
在域
的根目录中的.htaccess文件中尝试此操作RewriteEngine On
RewriteBase /
#for all subdomains of domain.com
RewriteCond %{HTTP_HOST} ^(.+)\.domain\.com$ [NC]
RewriteCond %{REQUEST_URI} !^/index\.php/view.*$ [NC]
RewriteRule ^(.*)$ index.php/view/$1 [L]