웹 서버 구축
.htaccess 설정 파일 (URL 재작성)
공부운동
2021. 9. 19. 22:14
Enable mod_rewrite
sudo a2enmod rewrite
sudo systemctl restart apache2
/etc/apache2/apache2.conf 수정
<Directory /var/www/html/Ninja/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
/var/www/html/Ninja/public/.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [NC,L,QSA]
