+ -
当前位置:首页 → 问答吧 → url重写,在.htaccess里怎么把index.php改掉?

url重写,在.htaccess里怎么把index.php改掉?

时间:2011-09-18

来源:互联网

具体是localhost/[email protected]
要替换成localhost/[email protected]
还有修改这个不会影响到链接的图片吧?

作者: sapherise   发布时间: 2011-09-18

.htaccess代码如下:

RewriteEngine on

ErrorDocument 404 404.html

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

作者: NET920   发布时间: 2011-09-18

相关阅读 更多