Htaccess (Wordpress): Difference between revisions

From P&T Knowledgebase
Jump to navigation Jump to search
(Created page with "Category:Wordpress ต้องสร้างไฟล์ '''.htaccess''' ไว้ในโฟลเดอร์หลักของ wordpress เวลาที่เป...")
 
No edit summary
Line 6: Line 6:
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /blog/index.php [L]
  RewriteRule . index.php [L]
  </IfModule>
  </IfModule>
  # END WordPress
  # END WordPress

Revision as of 10:42, 22 February 2011

ต้องสร้างไฟล์ .htaccess ไว้ในโฟลเดอร์หลักของ wordpress เวลาที่เปิดใช้ Permalink.

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
# END WordPress