|
RT,我刚刚在ubuntu下配置好php,rewrite模块也加载了,电脑也重启了。
.htaccess文件如下
PHP复制代码
### 将 RewriteEngine 模式打开
RewriteEngine On
### 修改以下语句中的 /tuan 修改为你的网站目录地址,如果程序放在根目录中,请将 /tuan 修改为 /
RewriteBase /tuan
### Rewrite 系统规则请勿修改
RewriteCond $ 1 !^ (index\ .php |images |styles |ckeditor |ckfinder |uploads |FCKeditor |js |robots\ .txt |count\ .html |class)
RewriteRule ^ (.*)$ index .php /$ 1 [L ]
复制代码
重写失败,请各位大神帮我看看这个有没有写错,谢谢~~
|
|