0

使用 .htaccess 我如何重定向:

http://localhost/mvc_md/index.php/welcome/destroy 
to 
http://localhost/mvc_md/welcome/destroy

我目前正在使用它,但它不起作用:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^localhost/mvc_md/$
RewriteRule ^(.*) localhost/$1  [QSA,L,R=301]
4

1 回答 1

0
Options +FollowSymLinks 
RewriteEngine on 
RewriteRule ^([a-zA-Z]*)/?([a-zA-Z]*)?/?([a-zA-Z0-9]*)?/?$ index.php/$1/$2/$3 [NC,L]
于 2013-01-21T22:20:20.770 回答