2013-10-21 53 views
0
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase/
RewriteRule ^index\.php$ - [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L] 
</IfModule> 

这htaccess的规则是不是重定向404错误或根本没有页面创立索引页htaccess文件没有进行重定向404个页面到我的index.php页面

我究竟做错了什么?

我的本地URL由IIS产生这样弄出来的:本地主机:26139/

,但即使我前缀我重写基地这是行不通的。

回答

相关问题