Create helloworld.htaccess

This commit is contained in:
Namhyeon Go 2019-02-26 11:54:58 +09:00 committed by GitHub
parent 653518d50d
commit 862d44ef01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
helloworld.htaccess Normal file
View File

@ -0,0 +1,5 @@
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]