URL重写和RewriteBase

时间:2015-11-19 09:57:46

标签: apache .htaccess mod-rewrite url-rewriting

我需要重写从mysite.com/home/my-articlemysite.com/my-article的网址。

当我尝试更改“home”文件夹的名称时,整个网站都会关闭,所以我想这就是它必须命名的内容。

我正在使用基于文件的CMS KirbyCMS。我试图将RewriteBase设置为/home,但这会给我一个内部服务器错误。

我可以在.htaccess文件中使用RewriteBase执行任何操作,还是需要查看其他位置?如果是,我怎么能这样做?

# 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 /home

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

# block all files in the site folder from being accessed directly
RewriteRule ^site/(.*) error [R=301,L]

# block all files in the kirby folder from being accessed directly
RewriteRule ^kirby/(.*) error [R=301,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 个答案:

没有答案
相关问题