如何包含位于文档根目录之外的 CKeditor

发布于 2024-08-31 02:12:17 字数 371 浏览 7 评论 0原文

是否可以使用驻留在文档根应用程序内的文档根之外的 CKeditor?

例如,我的目录结构如下:

    My Documentroot

    C://xampp/htdocs/example.com

    My CKeditor is outside and parallel to document root say

    C://xampp/lib/ckeditor

如何在 C://xampp 的应用程序页面中调用位于 C://xampp/lib/ckeditor/ckeditor 中的 ckeditor.js /htdocs/example.com/editor.php

Is it possible to use CKeditor which resides outside of your document root inside document root application?

For e.g. I am having directory structure like:

    My Documentroot

    C://xampp/htdocs/example.com

    My CKeditor is outside and parallel to document root say

    C://xampp/lib/ckeditor

How can I call ckeditor.js which is in C://xampp/lib/ckeditor/ckeditor in my application page in C://xampp/htdocs/example.com/editor.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

相思故 2024-09-07 02:12:17

如果您使用 Apache,则可以在 httpd.conf(或 httpd-vhosts.conf)中的站点 VirtualHost 部分设置别名):

Alias /ckeditor C:/xampp/lib/ckeditor

正如 @wimvds 所说,该文件必须可以被浏览器以某种方式访问​​。

If you're on Apache, you could set up an Alias in your site's VirtualHost section in httpd.conf (or httpd-vhosts.conf):

Alias /ckeditor C:/xampp/lib/ckeditor

as @wimvds says, the file must be accessible to the browser somehow.

旧时模样 2024-09-07 02:12:17

由于 CKEditor 是 Javascript,它必须驻留在文档根目录中的某个位置,否则您将无法包含它。

Since CKEditor is Javascript it HAS to reside somewhere in your document root, otherwise you won't be able to include it.

桃扇骨 2024-09-07 02:12:17

../../lib/ckeditor/ckeditor

../ 是父目录。

../../lib/ckeditor/ckeditor

../ is the parent directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文