Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Apache servermod_rewrite.so和in有什么区别 ?mod_rewrite.c在 .htaccess 文件中,我们也应该写mod_rewrite.soor mod_rewrite.c?
mod_rewrite.so
mod_rewrite.c
在 Apache 2.x 中,只使用 .so 是正常的。例如:
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
在 Apache 1.x 中,必须AddModule module.c在加载共享库 .so 之后。
AddModule module.c