簡體   English   中英

如何使用htaccess將root和/index.php顯示為/ news?

[英]How to use htaccess to make root and /index.php display as /news?

可以在以下URL上訪問我的新聞頁面: www.domain.com/index.phpwww.domain.com/ (兩者完全相同)。

我想使這些網址更漂亮,所以我希望它們都重定向到www.domain.com/news

所以:

  1. 我想使用htaccess來確保在地址欄中鍵入www.domain.com/news人,請參閱www.domain.com/index.php的內容。

  2. 我想使用htaccess將所有人從丑陋的URL(當他們嘗試直接訪問它們時)重定向到漂亮的URL,以便鍵入以下內容的人: www.domain.com/index.phpwww.domain.com/重定向到www.domain.com/news

當然,這可能會造成循環,那么我該如何正確執行呢?


背景信息:這些是我已經制定的規則(並且我使用modx作為cms):

#########################
# Turn on URL rewriting #
#########################

RewriteEngine On
RewriteBase /


#####################################
# Convert caps to lowercase letters #
#####################################

# If there are caps, set HASCAPS to true and skip next rule
RewriteRule [A-Z] - [E=HASCAPS:TRUE,S=1]

# Skip this entire section if no uppercase letters in requested URL
RewriteRule ![A-Z] - [S=28]

# Replace single occurance of CAP with cap, then process next Rule.
RewriteRule ^([^A]*)A(.*)$ $1a$2
RewriteRule ^([^B]*)B(.*)$ $1b$2
RewriteRule ^([^C]*)C(.*)$ $1c$2
RewriteRule ^([^D]*)D(.*)$ $1d$2
RewriteRule ^([^E]*)E(.*)$ $1e$2
RewriteRule ^([^F]*)F(.*)$ $1f$2
RewriteRule ^([^G]*)G(.*)$ $1g$2
RewriteRule ^([^H]*)H(.*)$ $1h$2
RewriteRule ^([^I]*)I(.*)$ $1i$2
RewriteRule ^([^J]*)J(.*)$ $1j$2
RewriteRule ^([^K]*)K(.*)$ $1k$2
RewriteRule ^([^L]*)L(.*)$ $1l$2
RewriteRule ^([^M]*)M(.*)$ $1m$2
RewriteRule ^([^N]*)N(.*)$ $1n$2
RewriteRule ^([^O]*)O(.*)$ $1o$2
RewriteRule ^([^P]*)P(.*)$ $1p$2
RewriteRule ^([^Q]*)Q(.*)$ $1q$2
RewriteRule ^([^R]*)R(.*)$ $1r$2
RewriteRule ^([^S]*)S(.*)$ $1s$2
RewriteRule ^([^T]*)T(.*)$ $1t$2
RewriteRule ^([^U]*)U(.*)$ $1u$2
RewriteRule ^([^V]*)V(.*)$ $1v$2
RewriteRule ^([^W]*)W(.*)$ $1w$2
RewriteRule ^([^X]*)X(.*)$ $1x$2
RewriteRule ^([^Y]*)Y(.*)$ $1y$2
RewriteRule ^([^Z]*)Z(.*)$ $1z$2

# If there are any uppercase letters, restart at very first RewriteRule in file.
RewriteRule [A-Z] - [N]

RewriteCond %{ENV:HASCAPS} TRUE
RewriteRule ^/?(.*) /$1 [R=301,L]


######################################
# Convert domain to prefixed version #
######################################

RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.domain\.com [NC]
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]


##############################################################
# Redirect .html requests to equivalent pages without suffix #
##############################################################

RewriteCond %{REQUEST_URI} \.html$
RewriteRule ^(.*)\.html$ $1 [R=301,L]


##########################
# The Friendly URLs part #
##########################

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


##########################################
# Serve .htc files with proper MIME type #
##########################################

# Critical for XP SP2 (use if your host allows htaccess MIME type overrides).
AddType text/x-component .htc


#######################
# Turn compression on #
#######################

php_flag zlib.output_compression On
php_value zlib.output_compression_level 5

您可以插入以下簡單規則:

Redirect /index.php http://www.domain.com/news.php
DirectoryIndex news.php

您需要設置特定的規則。

在.htaccess中,這種情況

RewriteRule ^news/?$ index.php [R=301,NC,L]

我還沒有檢查。

在RewriteBase行之后插入以下代碼:

# external redirect from /index.php to /news
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+(index\.php)?[?\s] [NC]
RewriteRule ^ /news [R=301,L]

# internal forward from  /news to /index.php
RewriteRule ^news/?$ /index.php [NC,L]

您可以將站點開始設置為您希望的任何頁面。 我只需要轉到“系統設置”,進入/ news /主頁,就可以完成所有設置。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM