我正在製作一個.htaccess
文件與各種mod_rewrite
規則。目前,我的規則之一是.htacess mod-rewrite正則表達式
RewriteRule ^blog /directorypath/index.php [L]
http://www.mysite.com/blogfjdkkfnfdjn
時,它仍然加載
blog
頁面。
基本上,我正在尋找的正則表達式它加載時JUST`/ blog`在鍵入的博客,並沒有別的
我正在製作一個.htaccess
文件與各種mod_rewrite
規則。目前,我的規則之一是.htacess mod-rewrite正則表達式
RewriteRule ^blog /directorypath/index.php [L]
http://www.mysite.com/blogfjdkkfnfdjn
時,它仍然加載
blog
頁面。
基本上,我正在尋找的正則表達式它加載時JUST`/ blog`在鍵入的博客,並沒有別的
如果通過/blog
或/blog/
訪問你的博客,然後我會用
RewriteRule ^blog/?$ /directorypath/index.php [L]
的$
字符添加到表達
RewriteRule ^blog$ /directorypath/index.php [L]
RewriteRule ^blog$ /directorypath/index.php [L]
您可以使用:
Redirect permanent /blog /directorypath/index.php
如果你需要一個臨時的,你可以使用:的302
代替permanent
OR
RewriteRule ^blog/?$ /directorypath/index.php [R=301,L]
如果你需要一個臨時的,你可以使用:R=302