can't handle a redirect

时间:2016-07-06 作者:Vlad Nitu


我一直在尝试重定向页面,但没有成功
我的目的是重定向example.com/me/nameexample.com/me?n=name
我试过add_rewrite_rule, 在中写入条件。htaccess,但没有任何效果。有什么线索吗
编辑:
完整的htaccess代码如下:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

<IfModule mod_deflate.c>
  # Compress HTML, CSS, JavaScript, Text, XML and fonts
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
  AddOutputFilterByType DEFLATE application/x-font
  AddOutputFilterByType DEFLATE application/x-font-opentype
  AddOutputFilterByType DEFLATE application/x-font-otf
  AddOutputFilterByType DEFLATE application/x-font-truetype
  AddOutputFilterByType DEFLATE application/x-font-ttf
  AddOutputFilterByType DEFLATE application/x-javascript
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE font/opentype
  AddOutputFilterByType DEFLATE font/otf
  AddOutputFilterByType DEFLATE font/ttf
  AddOutputFilterByType DEFLATE image/svg+xml
  AddOutputFilterByType DEFLATE image/x-icon
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/javascript
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/xml

  # Remove browser bugs (only needed for really old browsers)
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4\\.0[678] no-gzip
  BrowserMatch \\bMSIE !no-gzip !gzip-only-text/html
  Header append Vary User-Agent
</IfModule>


## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>
## EXPIRES CACHING ##
编辑2:
我尝试使用的重定向代码如下:

#RewriteRule (http://example.com/me/*) http://example.com/me?n=$1
编辑3:
代码中的“名称”并不相同,它根据个人的不同而不同。可以是Ash,George,Mike,随便什么。

3 个回复
SO网友:Kinal Nagarkar

使用This Plugin

或者在htacces文件的顶部写入以下代码:

Redirect 301 /oldfile.htm http://example.net/newfile.htm

SO网友:knif3r

你能试试下面的吗?还要确保您的重写模块是“未注释”的apache.conf 和/或php.ini 取决于您的配置。

#permanently redirect from example.com/me/name domain to example.com/me?n=name
RewriteEngine on
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} ^www\\.example/me\\.com$ [NC]
RewriteRule ^(.*)$ www.example.com/?n=name/$1 [R=301,L]

SO网友:KnightHawk

我同意@Kinal Nagarkar的观点,这有一个简单的插件。我个人最喜欢的是Redirection. 它不仅允许直接URL重定向,还允许REGEX,并为您提供一个计数器来监视它的使用频率。(还有一些我个人没有使用的其他功能,但我相信它们很有用)。

无论哪种方式,至少有两个插件可以使用,它们重量很轻,并且不需要为单个重定向重新发明轮子。

更改时。htaccess可能运行得更快,请考虑可用性也是另一个重要因素。

相关推荐

Redirect htaccess

我需要帮助重定向我的页面。例如,我有网站https://example.com. 我需要将内容从https://example.com 到https://example.com/blog. 这不是问题,我通过更改主页URL来做到这一点。这很有效。但现在我需要添加来自旧的重定向https://example.com 到https://xmpl.com.我想用。htaccess,但这不起作用。你们能帮帮我吗?以下是我对此的一些尝试,但两者都不起作用。RewriteEngine On RewriteRu