我在dev /的应用程序中有两个文件夹,并且实时/共享同一个系统。这是一个全新的安装。如何通过htaccess删除url中的index.php?我试过提供的代码:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
然而,似乎没有任何改变。如何调整htaccess以从url路径中删除index.php。
谢谢!
答案 0 :(得分:0)
如果您的安装不在域的根目录,则应在/
之前移除index.php
:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]