站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
整合:Drupal:安装:URL Rewrite
”(章节)
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
== 多站点配置 == 多站点环境下的简洁URL配置需要更多的工作。一般来说,最好的手段包括配置单个站点的简洁URL,备份Drupal的htacces文件并为各后续网站照葫芦画瓢地应用重写规则。 如果各Gallery站点的Mod Rewrite规则相同的话,就为各额外站点复制并粘贴首选规则集并分别进行路径的编辑。 Gallery模块重写股则区块出现在Drupal的重写规则之上。以下为一个示例区块: <code> # 开始Url Rewrite部分 # (自动生成,请勿编辑此部分) <IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteCond %{REQUEST_FILENAME} gallery\_remote2\.php RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . - [L] RewriteCond %{THE_REQUEST} /gallery/([0-9]+)-([0-9]+)/([^/?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /sites/site1.com/gallery2/main.php?g2_view=core.DownloadItem&g2_itemId=%1&g2_serialNumber=%2&g2_fileName=%3 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/([^?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /index.php?q=gallery&g2_path=%1 [QSA,L] </IfModule> </code> 你需要复制以添加另一网站的部分为: <code> RewriteCond %{THE_REQUEST} /gallery/([0-9]+)-([0-9]+)/([^/?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /sites/site1.com/gallery2/main.php?g2_view=core.DownloadItem&g2_itemId=%1&g2_serialNumber=%2&g2_fileName=%3 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/([^?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /index.php?q=gallery&g2_path=%1 [QSA,L] </code> 复制此区块,将其粘贴到之前部分之下并编辑DownloadItem 行中的url。最后gallery.module重写区块应为如下的样子: <code> # 开始Url Rewrite部分 # (自动生成,请勿编辑此部分) <IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteCond %{REQUEST_FILENAME} gallery\_remote2\.php RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . - [L] RewriteCond %{THE_REQUEST} /gallery/([0-9]+)-([0-9]+)/([^/?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /sites/site1.com/gallery2/main.php?g2_view=core.DownloadItem&g2_itemId=%1&g2_serialNumber=%2&g2_fileName=%3 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/([^?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /index.php?q=gallery&g2_path=%1 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/([0-9]+)-([0-9]+)/([^/?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /sites/site2.com/gallery2/main.php?g2_view=core.DownloadItem&g2_itemId=%1&g2_serialNumber=%2&g2_fileName=%3 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/([^?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/index\.php$ RewriteRule . /index.php?q=gallery&g2_path=%1 [QSA,L] </IfModule> </code>
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)