Codeigniter: Unable to access the Stylesheets

前端 未结 3 1557
你的背包
你的背包 2021-01-14 19:12

I have the following directory structure of Codeigniter Folder. You can see that I have put all my assets in the assets folder at the root of the application.

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-14 19:44

    As an addition to the answer of grim. If you have your rewrite engine on you should have the following in your root .htaccess

    
    
    RewriteEngine on
    
    RewriteCond $1 !^(index\.php|assets|robots\.txt)
    RewriteRule ^(.*)$ index.php/$1 [PT,L]  
    
    
    

提交回复
热议问题