Codeigniter | OVH | htaccess / url rewriting | Site very slow

后端 未结 3 1532
旧时难觅i
旧时难觅i 2021-01-28 15:48

Here is my htaccess for removing the index.php with codeigniter :

RewriteEngine On
RewriteCond $1 !^(index\\.php|assets|robots\\.txt)
RewriteRule ^(.*)$ index.ph         


        
3条回答
  •  时光取名叫无心
    2021-01-28 16:28

    try this out:

                RewriteEngine On
                RewriteBase /
                RewriteCond %{REQUEST_FILENAME} -s [OR]
                RewriteCond %{REQUEST_FILENAME} -l [OR]
                RewriteCond %{REQUEST_FILENAME} -d
                RewriteRule ^.*$ - [NC,L]
                RewriteRule ^.*$ index.php [NC,L]
    

提交回复
热议问题