【发布时间】:2016-07-10 06:56:09
【问题描述】:
这是当前 URL,我想从 URL 中删除“/public/index.php”然后如何编写 .htaccess
.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
如何重写 .htaccess 以删除子目录并装饰 URL。
【问题讨论】: