如何将基于社交引擎的网站网址重定向到所需的html文件

时间:2014-07-19 06:06:56

标签: .htaccess socialengine

抱歉,我是.htaccess的新手。我想将我的网站(基于社交引擎)主页重定向到某个html页面 例如,如果有人输入www.example.com/,它将被重定向到www.example.com/main.html 但如果我输入www.example.com/login/,我希望其他功能可以不受影响地工作 它会被重定向到登录页面,之后如果我登录它将会像以前一样工作。 我写下.htaccess,如下所示: -

# $Id: .htaccess 9977 2013-03-19 20:51:56Z john $

<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  RewriteEngine On

    RewriteCond %{REQUEST_URI} ^/$ 
    RewriteRule (.*) main.html [L,QSA]

  # Get rid of index.php
  RewriteCond %{REQUEST_URI} /index\.php
  RewriteRule (.*) index.php?rewrite=2 [L,QSA]

  # Rewrite all directory-looking urls
  RewriteCond %{REQUEST_URI} /$
  RewriteRule (.*) index.php?rewrite=1 [L,QSA]

  # Try to route missing files
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} public\/ [OR]
  RewriteCond %{REQUEST_FILENAME} \.(jpg|gif|png|ico|flv|htm|html|php|css|js)$
  RewriteRule . - [L]

  # If the file doesn't exist, rewrite to index
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?rewrite=1 [L,QSA]

</IfModule>

# sends requests /index.php/path/to/module/ to "index.php"
# AcceptPathInfo On

# @todo This may not be effective in some cases
FileETag Size

<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</IfModule>

但问题是第一次它工作得很好,如果我输入www.example.com/我被重定向到www.example.com/main.html 如果我输入www.example.com/login/,我被重定向到登录页面 但是如果登录被认证并且得到签名,则会出现问题,因为我被重定向到www.example.com,因为我再次被重定向到example.com/main.html我不会被重新定向到www.example.com想要这个时间。 请建议我如何解决这个问题的解决方案。 谢谢, 问候

1 个答案:

答案 0 :(得分:0)

请尝试以下规则:

RewriteRule ^$ main.html [L,QSA]

它只会重定向根URL。