CodeIgniter 썸네일형 리스트형 Codeigniter + Vue When you need to use Vue.js(Nuxt) on codeigniter, there is no default way on codeigniter.So I solve this problem with .htaccess file. The main concept is just share one root folder.And basically, this concept is for separate frontend and backend. Codigniter for Backend. Vue.js for Frontend. Like this.Project |- application |- frontend (Vuejs) |- system |- web |- index.php |- composer.json |- pac.. 더보기 [PHP] query string을 통해서 정상적으로 파라미터가 전달되지 않을때 Codeigniter 사용으로 인해 .htaccess에서 rewrite를 설정하는 경우에 REQUEST_URI는 정상적으로 전달이 되는데QUERY_STRING이 전달이 되지 않는 경우가 있음. 이럴 때는 .htaccess에서 RewriteRule ^(.*)$ /index.php?/$1 [L,QSA]위처럼 사용해주면 전달 되는 경우를 확인함. 여기서 QSA 옵션을 추가해준건데...이는 Query String Append 라고함. 정확한 원인은 파악이 아니됨. 더보기 [Apache] RewriteRule 설정 특정 위치로의 rewrite를 해줄때 아래와 같이 추가해주면됨. RewriteEngine OnRewriteRule ^/test/(.+) /process/test/$1 [L] 더보기 이전 1 2 3 다음