WordPress URL 重写

WordPress URL 重写
引用

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.php$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.php [L]
</IfModule>

wokanhao URL 重写
引用

<Directory "D:/wamp/www/bro">
  RewriteEngine On
  RewriteBase /
  RewriteCond %{HTTP_HOST} ^my\.hostname\.com$
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ /bro/admin.php/$1 [L]
  RewriteCond %{REQUEST_URI} !^/bro/index\.php
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ /bro/index.php/$1 [L]
</Directory>

猜你喜欢

转载自lipengyu2006.iteye.com/blog/1869869