标签: .htaccess mod-rewrite
我希望这样当你去localhost / home时它会把你送到localhost / public。
这是我到目前为止所做的:
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^(.*)$ public/$1 [L] </IfModule>
答案 0 :(得分:0)
我使用:RewriteRule ^home/(.*) http://localhost/public/$1 [R=301,L]
RewriteRule ^home/(.*) http://localhost/public/$1 [R=301,L]