去掉portalphp
㈠ 网站首页后缀的portal.php怎么去掉
这个是默认首页后缀的问题
在 服务器根目录 .htaccess 文件中加段代码
DirectoryIndex portal.php index.html index.htm index.php
最好再把网站链接里的 porta。
后台 域名设置里面 设置默认域名就可以具体情况你可以去后盾人看看,内容丰富,你可以去学习,去了也不会吃亏的
㈡ 怎么去掉forum.php 或 怎么去掉portal.php
如果你想去掉,这需要用到伪静态。
php程序可以个性.htaccess文件
代码如下:
RewriteEngine on
RewriteBase /
RewriteRule ^index.html($) index.php [L]
RewriteRule ^portal/($) portal.php [L]
RewriteRule ^forum($) forum.php [L]
参照着个修改,可以用index.html,index.do等等都行。
㈢ 怎么去掉forum.php 或 怎么去掉portal.php
如果是去掉这个文件直接删除就可以了,如果是获取后缀名,你可以通过file函数去截取。还有你可以修改后缀名。
希望我的回答可以帮到你,有什么不懂可以追问。
㈣ dz3.1如何去掉portal.php 新方法
很多人把门户设为首页之后会发现首页 portal.php 去除不掉。
这个很简单的,我们也不用去更改什么代码的呢,直接可以把首页后面那个可用去掉就OK了呢。
截图如下
㈤ discuz如何去掉portal.php
删掉不可能,这个discuz机制就是这样,可通过设置默认域名的方式隐藏掉
㈥ discuz x3.1门户如何去除portal.php
登陆网站后台,在“全局” - “站点功能”那里把“门户”关闭掉,这样portal.php就不能访问了。
㈦ 怎么去掉forum.php 或 怎么去掉portal.php
可以在web服务器中配置文件中设置默认页为 forum.php或者protal.php
apache(httpd.conf):
<IfMole dir_mole>
DirectoryIndex index.html index.php forum.php
</IfMole>
nginx(nginx.conf):
location 下面的index 选项
index:forum.php
㈧ discuz x2.5如何彻底去掉路径中portal.php
第一步,服务器设置portal.php为默认首页
第二步,后台,界面,导航设置中,新建 “首页”,链接设置为“/”或你的域名(域名要带上http://),并设置为 首页和可用
㈨ dz3.1如何去掉portal.php 新方法
你直接把index.php删掉,然后把portal.php修改成index.php就行了,清下浏览器缓存。