修改mysql数据库位置
/usr/local/mysql/bin/mysqld_safe
260几行 默认是/usr/local/mysql/var
elif test -d $MY_BASEDIR_VERSION/var/mysql
then
DATADIR=/home/db/var
# Or just give up and use our compiled-in default
else
DATADIR=/home/db/var
数据库出现问号 对比4.0发现
cd ../mysql
./configure –prefix=/usr/local/mysql –with-charset=gbk –with-extra-charsets=all –without-debug –with-mysqld-ldflags=-all-static
make
make install clean
主要是编译的时候没加–with-charset=gbk 这个导致的
在 /usr/local/apache/conf/httpd.conf
<Directory />
Options FollowSymLinks
AllowOverride None 这里改成 AllowOverride Options FileInfo
Order deny,allow
Deny from all
</Directory>
这样就支持 .htaccess 了。
AllowOverride None 这里改成 AllowOverride All应该也可以!
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END