操作成功!
操作失败!
SEO配置
SEO状态
说明 UrlRewrite有利于搜索引擎的收录,写在httpd.ini或.htaccess文件中
如果文件位于"forum"目录中
httpd.ini写法 [ISAPI_Rewrite]
RewriteRule ^/forum/((Index|List|Content|admin|Vote|Message|Favor).*)$ /forum/index\.php/$1 [L]
.htaccess写法 RewriteEngine on
RewriteRule ^/forum/((Index|List|Content|admin|Vote|Message|Favor).*)$ /forum/index\.php/$1 [L]
如果文件位于根目录中 RewriteRule ^/((Index|List|Content|admin|Vote|Message|Favor).*)$ /index\.php/$1 [L] 注意:括号里加入控制器名称,用"|"间隔,且论坛目录不能含有与控制器名称同名的文件夹