所以看起来我可以找到其中一些解决方案,但不能让它们一起工作。我想要做的是从各方创建干净的URL。
这是我到目前为止所做的:
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和尾部斜线停止工作。提前谢谢大家。
答案 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的博客文章中
HTML BP有一个疯狂的700+线.htaccess,你可以看到一些很酷的技巧。