ฉันหวังว่านี่เป็นคำตอบที่ง่ายใช่หรือไม่ใช่ (โปรดระบุสาเหตุ)
คำถามที่ 1: การวางกฎใน htaccess นั้นมีความสำคัญอย่างไร เนื่องจากเป็นรายการที่แยกจากกันโดยสิ้นเชิง: ยกตัวอย่างเช่น
Q2: ถ้าใช่ฉันจะใช้คำสั่งที่ถูกต้องหรือไม่ เพื่อเร่งความเร็วเครื่องยนต์ htacces และไม่เกินมันด้วยกฎที่ไม่จำเป็น?
Q3: เคล็ดลับใด ๆ เกี่ยวกับสิ่งที่จะปิดการใช้งาน / เพิ่มที่นี่ยินดีต้อนรับสู่ jucily +1!
# DirectoryIndex index.php /index.php
AddDefaultCharset UTF-8
RewriteEngine on
# Options All
# Options +FollowSymLinks
# Options +FollowSymLinks -Indexes -ExecCGI
# RewriteBase /
#####################################################
<IfModule mod_headers.c>
ExpiresActive On
ExpiresDefault M172800
Header unset ETag
FileETag None
Header unset Pragma
##### STATIC FILES
<FilesMatch "\\.(ico|jpg|png|gif|svg|swf|css|js|fon|ttf|eot|xml|pdf|flv)$">
ExpiresDefault M1209600
Header set Cache-Control "public, max-age=1209600"
</FilesMatch>
##### DYNAMIC PAGES
<FilesMatch "\\.(php)$">
ExpiresDefault M604800
Header set Cache-Control "public, max-age=604800"
</FilesMatch>
</IfModule>
#####################################################
# /page123 and /page123/ will all go to /page123.php
RewriteRule ^(.+)/$ /$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
####################################################
# NO WWW http://www. becomes always http://
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
##############################################################
# add own extensions that will be interpreted as php
AddType application/x-httpd-php .php
AddType image/svg+xml svg svgz
AddType text/css css
AddType text/javascript js
AddEncoding gzip svgz
##############################################################
ErrorDocument 500 /
ErrorDocument 404 /
.htaccess
ไฟล์ของ OP ในระยะสั้นคำสั่งจากโมดูลที่แตกต่างกัน (และในภาชนะที่แตกต่างกัน) ดำเนินการอย่างอิสระและในลำดับที่กำหนดไว้ล่วงหน้าโดยไม่คำนึงถึงลำดับที่ปรากฏในไฟล์ปรับแต่ง