请教一下各位,转换伪静态的时候,因为下面这句,用转换工具进行转换就报错!请帮我转换过来,谢谢了!- RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
复制代码
- <IfModule mod_rewrite.c>
- Options +FollowSymlinks -Multiviews
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
- </IfModule>
复制代码
|
|