清洁URLS www。到非,删除index.php,删除.php扩展名,使用HTACCESS添加尾随斜杠

时间:2014-10-20 22:14:30

标签: php apache .htaccess mod-rewrite

所以看起来我可以找到其中一些解决方案,但不能让它们一起工作。我想要做的是从各方创建干净的URL。

  1. 解决所有www。和非www。到非www。页
  2. 删除所有出现的index.php(即如果导航到文件夹/blog/index.php解析为/ blog /)
  3. 从所有网址中删除php扩展程序(例如/page.php到/ page /)
  4. 添加尾部斜杠(即/ page到/ page /)
  5. 这是我到目前为止所做的:

    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule .*[^/]$ %{REQUEST_URI}/ [L,R=301]
    RewriteCond %{REQUEST_FILENAME}.php -f
    RewriteRule ^(.+)/$ $1.php [L]
    

    这样就可以完成干净的URL删除.php扩展名并添加尾部斜杠。我不得不取出www.to non并删除index.php,因为干净的URL和尾部斜线停止工作。提前谢谢大家。

1 个答案:

答案 0 :(得分:2)

这是.htaccess的样子:

RewriteEngine On

# Remove www.
<IfModule mod_rewrite.c>
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
</IfModule>

# 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]

This是关于删除网址文件扩展名的非常好的参考文章。请记住,为此,您必须在所有链接中引用非扩展程序版本,例如<a href="about">About</a>,而非<a href="about.php">About</a>

在您执行.htaccess事项时,我可能还建议您添加以下代码段。前两个与网站速度有关,第二个用于自定义404页面,第三个用于强制UTF-8(因此您不必在HTML中声明它)。

# Expires caching (Caching static files for longer drastically improves performance, you might even want to put even more aggressive times)
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>

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

# 404 Page
ErrorDocument 404 /404.php

# Force UTF-8
AddDefaultCharset utf-8
如果您有兴趣,可以在CodePen的博客文章中

I wrote about this

HTML BP有一个疯狂的700+线.htaccess,你可以看到一些很酷的技巧。