在XAMPP下,配置简洁URL(clean urls)
1, F:\xampp\apache\conf,在该目录下找到httpd.cond文件,打开,找到#LoadModule rewrite_module modules/mod_rewrite.so。
将前面的注释符“#”去掉。
2, F:\xampp\apache\conf\extra,在这个目录下面,新建一个httpd-ubercart-5.conf文件,我的项目名为ubercart-5。添加以下内容:
Alias /ubercart-5 "F:/xampp/htdocs/ubercart-5/"
<Directory "F:/xampp/htdocs/ubercart-5/">
AllowOverride All
Order allow,deny
Allow from all
</Directory>
保存,关闭,并重启apache,这样就搞定了。注意,你需要把F:\xampp\改成你的目录,把路径写对。
|