2017-05-17 40 views
0

我開發的CMS柯比頂部的單頁的應用程序和最需要的頁面重定向到首頁,讓我可以處理的前端路由配置htaccess的在柯比CMS。如何爲單頁的應用程序

相關的面板有些即/ api__data,一切仍然需要通過柯比可訪問雖然。

我無法配置.htaccess文件來實現正確的重定向。

目前的.htaccess看起來是這樣的:

# Kirby .htaccess 

# rewrite rules 
<IfModule mod_rewrite.c> 

# enable awesome urls. i.e.: 
# http://yourdomain.com/about-us/team 
RewriteEngine on 

# make sure to set the RewriteBase correctly 
# if you are running the site in a subfolder. 
# Otherwise links or the entire site will break. 
# 
# If your homepage is http://yourdomain.com/mysite 
# Set the RewriteBase to: 
# 
# RewriteBase /mysite 

# In some enviroments it's necessary to 
# set the RewriteBase to: 
# 
# RewriteBase/

# block text files in the content folder from being accessed directly 
RewriteRule ^content/(.*)\.(txt|md|mdown)$ index.php [L] 

# block all files in the site folder from being accessed directly 
# except for requests to plugin assets files 
#RewriteRule ^assets/plugins/([a-zA-Z0-9\.\-_%=]+)/(.*)$ site/plugins/$1/assets/$2 [L,N] 
#RewriteCond $1 !^plugins/[a-zA-Z0-9\.\-_%=]+/assets/.* 
RewriteRule ^site/(.*) index.php [L] 

# block direct access to kirby and the panel sources 
RewriteRule ^(kirby|panel\/app|panel\/tests)/(.*) index.php [L] 

# make panel links work 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^panel/(.*) panel/index.php [L] 

# make site links work 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*) index.php [L] 

</IfModule> 

# Additional recommended values 
# Remove comments for those you want to use. 
# 
# AddDefaultCharset UTF-8 
# 
# php_flag short_open_tag on 

感謝您的幫助提前!

回答

0

所以爲了使單頁的應用程序的東西的工作,我沒有編輯htaccess文件後所有。我添加了以下行成site.php文件(訪問功能):

if (!preg_match("/api_/i", $uri)) { 
    return $this->page = $this->homePage(); 
} 

這將確保所有的網址被重定向到家庭(除了我的API調用)

相關問題