我当前的网址:http://example.com/view
我希望它是:http://example.com/index.php/home/view
我该怎么做?
我尝试了这个但是没有工作:
RewriteRule http://example/$ http://example/index.php/home/$1 [NC,L] # Process parrots
答案 0 :(得分:1)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$ [NC]
RewriteRule ^((?!index\.php.*).*)$ /index.php/home/$1 [R=301,L]
上述代码应按要求运行。确保mod_rewrite
已启用。