我在我的网址

时间:2016-02-26 02:24:45

标签: php

您好我有一个主域名设置了instabuilder,当创建一个带有instabuilding的页面时,它会将其创建为“maindomain.com/pagename”

我遇到的问题是我的插件域,当我用instabuilder创建一个页面时,它创建链接为addondomain.com/index.php/pagename为什么index.php会出现,链接看起来不像好的。

非常感谢任何帮助。谢谢

1 个答案:

答案 0 :(得分:0)

这是您可以在.htaccess(在DOCUMENT_ROOT下)中使用的代码,用于从URI中删除index.php:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L,QSA]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index\.php [NC]
RewriteRule ^ %1 [R=301,L]

复制

Remove 'index.php' from URL with .htaccess