删除.php扩展名添加斜杠&用htaccess重定向到www

时间:2017-02-23 16:49:03

标签: apache .htaccess redirect mod-rewrite

我想使用.htaccess no .php或html扩展来制作seo友好网址。同时使用尾部斜杠自动重定向到https://www结束网址。

我有php页面: - index.php - product.php - about.php - contact.php - network.php

我想要的最终访问权限 https:// www.mydomain.com/product /

Webserver apache 2.4.6

我尝试但是图像,css,js,字体,其他php / html文件无法正常工作

RewriteEngine On

# Remove file extensions, add a trailing slash.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]

提前谢谢大家。

1 个答案:

答案 0 :(得分:0)

您可以使用此规则删除.php并在Apache 2.4上强制执行https

RewriteEngine on
RewriteCond %{HTTPS}#%{HTTP_HOST} ^off#(?:www\.)?(.+)$
RewriteRule ^ https://www.%1%{REQUEST_URI} [NE,L,R]
#remove .php
RewriteRule ^(.+)\.php$ /$1/ [L,R]
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ /$1.php [END]

要修复您的css,js和其他相关资源,只需将以下基本标记添加到网页的主题部分

<base href="/">