我試圖通過使用mod_jk將我的webapp的任何請求傳遞給tomcat容器,當請求.jsp和靜態文件時,一切都很好,但我使用.htaccess文件來製作友好的URL ,這是不工作的某些原因與當前的配置,這是vhost.conf我有:JKMount沒有拿起.htacess
DirectoryIndex index.jsp index.htm index.html index.php
<IfModule mod_jk.c>
JkMount/ajp13
JkMount /* ajp13
</IfModule>
RewriteLog /etc/httpd/logs/rewrite.log
RewriteLogLevel 3
DocumentRoot /usr/share/tomcat6/psa-webapps/localkicks.com
<Directory /usr/share/tomcat6/psa-webapps/localkicks.com>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
一個基本的重寫規則:
RewriteEngine on
RewriteRule ^/?editorial_search$ news_search_result.jsp [L]
爲什麼會這樣發生?
¿是如何傳入的URL在你的問題重寫規則? –
類似http://www.localkicks.com/editorial_search –