站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
整合:Drupal:安装:URL Rewrite
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
{{review}}{{expand}} 简洁的URL/重写模块使得如Apache这样的web服务器能够重写Gallery URL请求,如将''http://www.site1.com/?q=gallery&g2_itemId=24''重写为人可读性更高的格式''http://www.site1.com/gallery/album/image.jpg.html''。 在大多数单个站点中,在Gallery模块中配置简洁URL支持是很直白的。然而,非典型的服务器和站点配置会在启用简洁URL时遇到困难。 == 单个站点的配置 == <ol> <li>配置独立Gallery中的[[Gallery:Modules:rewrite#用法|重写模块]]</li> <li>启用[http://drupal.org/node/15365 Drupal中的简洁URL]</li> <li>临时允许Drupal的htaccess文件可写<br /> <code>chmod 666 /path/to/drupal/.htaccess</code></li> <li>在Drupal的管理区域,选择Site Configuration>Gallery Settings</li> <li>选择安装标签Install </li> <li>扩展'''第四步:简洁URLs / URL重写'''设定</li> <li>确认或更正你的Drupal文件路径及URL</li> <li>点击'''Test htaccess'''按钮</li> </ol> 成功的话会看到'OK'状态. == 多站点配置 == 多站点环境下的简洁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> == 疑难解答 == Support for this feature relies on the availability of Apache's mod_rewrite module. It is impossible to enable clean URLs without it. Check with your web hosting provider if you're unsure whether mod_rewrite is enabled. Installing Gallery 2 in a folder named 'gallery' within your Drupal directory will create rewrite conflicts and make enabling clean URLs impossible. Disable the URL Rewrite moduel in Gallery, rename the Gallery 2 folder to anything but 'gallery', re-enalbe Gallery's Rewrite Module, and try again. If you experience an error like this when navigating to Drupals gallery settings pages; Error (ERROR_MISSING_OBJECT) : Parent 7 path install 尝试将此行; RewriteCond %{THE_REQUEST} /gallery/([^?]+)(\?.|\ .) 修改为; RewriteCond %{THE_REQUEST} \ /gallery/([^?]+)(\?.|\ .)
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)
本页使用的模板:
模板:Expand
(
编辑
)
模板:Review
(
编辑
)