我已将codiad安装在网络服务器的子目录中(xyz.com/codiad)。根目录.htaccess文件如下:
Options -Indexes
AddDefaultCharset utf-8
AddCharset utf-8 .js
AddCharset utf-8 .php
AddCharset utf-8 .md
RewriteEngine on
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule (.+)\.htm$ index.php
RewriteRule (.+)\.md$ index.php
RewriteRule (.+)\.txt$ index.php
ErrorDocument 404 /404.htm
尝试对codiad进行初始设置会导致进程的内部服务器错误500
.../codid/components/install/process.php
我认为codiad需要自己的.htaccess文件..
我不得不说我无法访问apache配置文件,只能访问网站空间的FTP
一般来说,如何覆盖任何父目录的.htaccess文件?