在安装过程中,我添加了文件夹:
Source:{#DBPath}; DestDir:"{app}\DataBase";
我希望在卸载中,inno-setup会询问用户是否
要删除文件.
我怎样才能做到这一点 ?
谢谢,Avi.
我正在使用共享托管(Apache,PHP,Wordpress),并且在尝试阻止访问.htaccess和wp-config时,
错误500-内部服务器错误
我所做的就是将这些放入.htaccess:
# protect the wp-config file
<files wp-config.php>
Order allow, deny
Deny from all
</files>
# Prevent access to .htaccess
<Files .htaccess>
Order allow, deny
Deny from all
</Files>
Run Code Online (Sandbox Code Playgroud)
这就是我的.htaccess中的全部内容。
我遵循了大多数显示此内容的网站中的示例。如果我下订单:
Order deny,allow
Deny from all
Run Code Online (Sandbox Code Playgroud)
没有内部错误,但这不是我在大多数网站指南中看到的。如果有人知道为什么以及使用什么。