Added .htaccess sample file

这个提交包含在:
dl6nm 2020-05-27 11:27:17 +02:00
父节点 5f9665fe48
当前提交 52df1b7802
找不到此签名对应的密钥
GPG 密钥 ID: BB7D19501488FF15

8
.htaccess.sample 普通文件
查看文件

@ -0,0 +1,8 @@
# If you want to hide 'index.php' from the URL, rename this file to '.htaccess' on your server
# Then change the following variable in /application/config/config.php
# $config['index_page'] = '';
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]