我對使用apache mod_rewrite重寫url有疑問。我是mod_rewrite的新手,我沒有任何正則表達式的經驗。關於使用apache重寫url的問題mod_rewrite
我想要做的是:
重寫/要/網頁/內容/公/
重寫/客戶/要/網頁/內容/客戶/
我該如何達到上述目的。
我想:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^/clients/$ web/content/clients/ [L]
RewriteRule ^(.*)$ web/content/public/$1 [L]
</IfModule>
但它不工作。我能做什麼?