Htaccess - 让网址更长

时间:2015-11-08 19:58:24

标签: .htaccess mod-rewrite url-rewriting url-redirection

我当前的网址:http://example.com/view

我希望它是:http://example.com/index.php/home/view

我该怎么做?

我尝试了这个但是没有工作:

RewriteRule    http://example/$    http://example/index.php/home/$1    [NC,L]   # Process parrots

1 个答案:

答案 0 :(得分:1)

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$ [NC]
RewriteRule ^((?!index\.php.*).*)$ /index.php/home/$1 [R=301,L]

上述代码应按要求运行。确保mod_rewrite已启用。