我正在尝试重写网址以使网站cms更加用户友好。 joomla cms由/ cms / administrator访问,我只是希望它可以被/ cms访问
所以我添加了这条规则:
RewriteRule ^cms/$ /cms/administrator [L]
但它没有将我重定向到cms / administrator。我做错了什么?
我的整个.htaccess文件:
RewriteEngine on
#Indexes uitzetten
Options -Indexes
#Website
DirectoryIndex index.php
#CMS rewrite
RewriteRule ^cms/$ /cms/administrator [L]
#Rewrites
RewriteRule ^taarten/(.*).html taartenlisting.php?alias=$1 [L]
RewriteRule ^taart/(.*).html content.php?alias=$1 [L]
RewriteRule ^(.*).html artikel.php?alias=$1 [L]