将index.php的url重定向到非index.php,将字符下划线重定向为破折号(.htaccess)

时间:2017-09-06 16:58:18

标签: php apache .htaccess codeigniter mod-rewrite

默认情况下。 Codeigniter网址在每个网址中都有index.php,然后使用下划线。

我的配置现在正好。

在Routes.php中

我设置了$route['translate_uri_dashes'] = TRUE;。这意味着当我尝试输入example.some_path时,它将转到example.some-path

在我的congfig.php。

$config['index_page'] = '';// remove'index.php';

我的.htaccess

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

# Don't listing directory
Options -Indexes
ErrorDocument 403 http://example/404

# Origin setting
SetEnvIf Origin "http(s)?://(.+\.)?example\.com(:\d{1,5})?$" CORS=$0

Header set Access-Control-Allow-Origin "%{CORS}e" env=CORS
Header merge  Vary "Origin"

现在问题。

1)是的,example.com或example.com/somepath(没有index.php)正在运行。但是example.com/index.php或者example.com/index.php/somepath也仍然可用并且也可以使用。访问者访问它时会出现重复内容错误,即使我使用robots.txt也没有索引。那么如何使用index.php无法访问任何内容呢?用.htaccess?

2)设置$route['translate_uri_dashes'] = TRUE;后,所有带下划线的链接都会自动转换为破折号(一旦我点击我的网站中包含下划线的链接,AND会自动插入index.php)..(例如:一旦我点击链接{{ 1}}它将转换为example.com/index.php/some-path)。当我尝试直接访问example.com/some-path而不点击任何链接形式我的网站。是的,example.com/some-path工作。

如何使index.php无法访问并自动重定向到非index.php?

1 个答案:

答案 0 :(得分:0)

您可以像我一样尝试使用web.config。我不太喜欢.htaccess 也许是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Imported Rule 1" stopProcessing="true">
          <match url="^(.*)$" ignoreCase="false" />
          <conditions logicalGrouping="MatchAll">
              <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
              <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
          </conditions>
          <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="true" />
          </rule>
      </rules>
    </rewrite>
        <directoryBrowse enabled="true" />
  </system.webServer>
</configuration>