mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 16:29:31 +01:00
9dc63f2f43
git-svn-id: http://svn.automattic.com/wordpress/trunk@12962 1a063a9b-81f0-0310-95a4-ce76da25c4cd
20 lines
568 B
Plaintext
20 lines
568 B
Plaintext
RewriteEngine On
|
|
RewriteBase BASE/
|
|
|
|
#uploaded files
|
|
RewriteRule ^(.*/)?files/$ index.php [L]
|
|
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
|
|
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
|
|
|
|
# add a trailing slash to /wp-admin
|
|
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
|
|
RewriteRule ^(.+)$ $1/ [R=301,L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
|
RewriteCond %{REQUEST_FILENAME} -d
|
|
RewriteRule . - [L]
|
|
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
|
|
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
|
|
RewriteRule . index.php [L]
|
|
|