htaccess规范URL和HTTP-> HTTPS重定向(自定义URL)

时间:2019-03-18 23:22:19

标签: .htaccess redirect canonical-link

希望如此,您可以帮助我解决此问题。我正在尝试设置我的apache服务器重定向,但是没有成功。我正在尝试一次执行此操作:

  1. http://www.example.com->重定向至-> https:/ /example.com
  2. http://example.com->重定向至-> https:/ /example.com
  3. https://www.example.com->重定向至-> https://example.com
  4. (如果URL包含文件扩展名,例如.php / .html,我想将其删除),例如:https:/ /example.com/portfolio.php->要替换为-> https://example.com/portfolio
  5. URL也可以包含1个或2个URL参数,我想替换以/分隔的URL,例如:https://example.com/portfolio.php?id=1&t=Max->要替换为-> https://example.com/portfolio/1/Max

如果可能,所有重定向都应使用R = 301。

这是我到目前为止所拥有的,但是没有用。

RewriteEngine On

RewriteCond %{SERVER_PORT} 80

RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]

RewriteRule ^portfolio/(\d+)/(.*) portfolio.php?id=$1 [QSA,L] 

RewriteRule ^portfolio portfolio.php [QSA,L]

RewriteRule ^about about.php [QSA,L]

请帮助我解决此问题。我花了这么多书,但从来没有做对。主要问题是Google抓取工具将我的页面识别为重复页面,并且我有规范的URL问题需要解决。

谢谢您的帮助!

2 个答案:

答案 0 :(得分:0)

不是完美的,但是从概念上讲,这将解决一部分问题。将http重定向到https,解决1、2和3。

在Linux上的/ etc / apache2 / sites-enabled中找到的文件

Listen 443
Listen 80

IfModule mod_ssl.c>
<VirtualHost *:80>
ServerName example.com
redirect / https://example.com
</VirtualHost>

<VirtualHost*:80>
ServerName www.example.com
redirect / https://example.com
</VirtualHost>

<VirtualHost*:443>
ServerName www.example.com
redirect / https://example.com
</VirtualHost>

<VirtualHost *:443>
ServerName example.com

**Put all the other stuff you need here**

</VirtualHost>

根据您的配置,有很多事情要考虑。

修改文件后,您需要重新启动Apache。

答案 1 :(得分:0)

尝试一下:

RewriteEngine on 

RewriteCond %{HTTP_HOST} ^www\. [NC,OR]
RewriteCond %{HTTPS} !=on
RewriteRule ^  https://example.com%{REQUEST_URI} [L,R=301]

RewriteCond %{THE_REQUEST} \s/+(.*?/)?(?:index)?(.*?)\.(php|html)[\s?/] [NC]
RewriteRule ^ /%1%2 [R=301,L]

RewriteCond %{QUERY_STRING} ^id=(\d+)&t=(.+)
RewriteRule ^(.*)$ /$1/%1/%2 [L,R=301]


RewriteCond %{REQUEST_FILENAME}   !-f 
RewriteRule ^([^\/]+)/(\d+)/(.*)$ /$1.php?id=$2&t=$3 [L]

RewriteCond %{REQUEST_FILENAME}   !-f 
RewriteCond %{REQUEST_FILENAME}\.php -f 
RewriteRule ^(.*) /$1.php [L]
RewriteCond %{REQUEST_FILENAME}   !-f 
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*) /$1.html [L]

RewriteEngine on之后的前三行是为了确保所有请求都是https://example....

接下来的两行是删除两个html & php扩展名。

接下来的两行捕获任何查询字符串/portfolio?id=1&t=max,并将其外部重写为/portfolio/1/Max

接下来的两行捕获任何/portfolio/1/Max之类的URI,并在内部将其重写为原始路径。

其余各行将重定向其余URI,并在内部检查它们是否为.php or .html

注意:清除浏览器缓存,然后进行测试