Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 .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]
Options +FollowSymLinks RewriteEngine on RewriteRule ^([a-zA-Z]*)/?([a-zA-Z]*)?/?([a-zA-Z0-9]*)?/?$ index.php/$1/$2/$3 [NC,L]