18,828
社区成员
发帖
与我相关
我的任务
分享
<VirtualHost *:80>
DocumentRoot /www/www/resume
ServerName www.guhaodi.com
<Directory "/www/www/resume">
Options -Indexes FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
RewriteRule ^(.*)/simple/([a-z0-9\_]+\.html)$ $1/simple/index.php?$2
</IfModule>
</VirtualHost>
但是在浏览器输入解析过的域名,还是不行.请问问题出在哪里呢?