“apxs:Error: Sorry, no DSO support for Apache available
apxs:Error: under your platform. Make sure the Apache
apxs:Error: module mod_so is compiled into your server”
不是很明白,好像使要求你的apache里面有mod_so。不过你可以自己给httpd.conf里面加一些规则,使用 mod_rewrite 而不必使用fastrw模块,
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/mybbs(.*)/bbschat(.*) /cgi-bin/www/bbschat [PT]
RewriteRule ^/mybbs(.*)$ /cgi-bin/www [PT]
RewriteRule ^/$ /cgi-bin/www [PT]
</IfModule>
这里 mybbs 要换成你的 MAGIC 字符串,
【 在 foxle ( ) 的大作中提到: 】
: [root@localhost bbs]# make -C software/apache_modules
: make: Entering directory `/home/bbs/software/apache_modules'
: apxs -i -I .. -a -c mod_fastrw.c
: apxs:Error: Sorry, no DSO support for Apache available
: apxs:Error: under your platform. Make sure the Apache
: ...................
--
FROM 162.105.31.222